Workflow file for this run
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: Create and publish hybrid-runtime binaries | |
# Configures this workflow to run every time a release is created | |
on: | |
release: | |
types: [published] | |
#push: | |
# branches: ['main'] | |
jobs: | |
build_example: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Tar release | |
run: | | |
tar -cvf example.tar -C ${{ github.workspace }} example/ | |
gzip example.tar | |
- name: Release with Notes | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
example.tar.gz | |