Skip to content

fix version name in ci #9

fix version name in ci

fix version name in ci #9

Workflow file for this run

name: ci
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: make PBG_VERSION=${{ github.ref_name }}
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
prerelease: true
files: "pixel-backup-gang-*.tar.gz"
token: ${{ secrets.MY_GITHUB_TOKEN }}