Create Release #1
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 Release | ||
on: | ||
workflow_dispatch: # Allows manual triggering | ||
push: | ||
tags: | ||
- v* # Triggers on pushes to tags starting with "v" | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run release script | ||
run: ./release.sh | ||
- name: Upload Release Asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ github.releases.upload_url 1 }} # Get upload URL from previous step | ||
Check failure on line 21 in .github/workflows/release.yml GitHub Actions / Create ReleaseInvalid workflow file
|
||
asset_path: ./release.tar.gz | ||
asset_name: release.tar.gz | ||
asset_content_type: application/gzip # Optional: Specify content type |