Skip to content

Merge pull request #206 from ApeSwapFinance/staging #165

Merge pull request #206 from ApeSwapFinance/staging

Merge pull request #206 from ApeSwapFinance/staging #165

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
bump_version:
name: Bump Version
runs-on: ubuntu-latest
outputs:
new_tag: ${{ steps.tag_version.outputs.new_tag }}
changelog: ${{ steps.tag_version.outputs.changelog }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
create_release:
runs-on: ubuntu-latest
needs: bump_version
steps:
- uses: actions/checkout@v3
- name: Create GitHub Release
id: create_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ needs.bump_version.outputs.new_tag }}
release_name: Release ${{ needs.bump_version.outputs.new_tag }}
body: |
${{ steps.Changelog.outputs.changelog }}