set guide link #1
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
#{% raw %} <-- prevent cookiecuttor errors | |
name: bundle_builder | |
on: | |
push: | |
tags: | |
- '*' | |
permissions: | |
contents: write | |
jobs: | |
build_bundle: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out branch source | |
uses: actions/checkout@v4 | |
- name: Build and upload project bundle | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: > | |
make bundle | |
&& gh release upload $GITHUB_REF_NAME build/*.zip | |
#{% endraw %} <-- prevent cookiecutter errors |