Skip to content

Release

Release #9

Workflow file for this run

name: Release
"on":
release:
types: [published]
permissions:
contents: write
jobs:
attach-release-archive:
runs-on: ubuntu-latest
steps:
- run: >
wget https://github.com/$GITHUB_REPOSITORY/archive/refs/tags/${GITHUB_REF_NAME}.tar.gz
-O rules_appimage-${GITHUB_REF_NAME}.tar.gz
- uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: rules_appimage-${GITHUB_REF_NAME}.tar.gz
tag: ${GITHUB_REF_NAME}
overwrite: true