Prepare release #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Workflow | |
on: | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dart-lang/setup-dart@latest | |
- uses: actions/upload-artifact@v2 | |
- uses: actions/setup-gh@latest | |
- name: Get Version from pubspec.yaml | |
run: echo "::set-env name=PACKAGE_VERSION::$(dart get_version.dart)" | |
- name: Build Executable | |
run: dart compile exe bin/git_log_markdown_formatter.dart -o glmf | |
- name: Upload Executable Artifact | |
with: | |
name: glmf | |
path: glmf | |
- name: Publish Release | |
run: | | |
gh release create v${{ env.PACKAGE_VERSION }} \ | |
dist/my-binary.zip \ | |
-t "Release v${{ env.PACKAGE_VERSION }}" \ | |
-n "$(cat RELEASE_NOTES.md)" | |
- name: Create Git Tag | |
run: git tag v${{ env.PACKAGE_VERSION }} && git push origin v${{ env.PACKAGE_VERSION }} |