Skip to content

Release

Release #3

Workflow file for this run

# .github/workflows/release.yml
name: Release
on:
release:
types: [published]
permissions:
contents: write
jobs:
build-release:
name: Build artifacts
runs-on: ubuntu-latest
container:
image: docker.io/batonogov/pyinstaller-linux:latest
env:
SS_DEV_ID: ${{ secrets.SS_DEV_ID }}
SS_DEV_PASSWORD: ${{ secrets.SS_DEV_PASSWORD }}
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Build package
run: make
- name: Upload assets
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{startsWith(github.ref, 'refs/tags/') }}
with:
files: ./Artie/Artie.zip