diff options
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 345c05d..01080ba 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,17 +1,25 @@ -name: Main +name: "tagged-release" -on: push +on: + push: + tags: + - "v*" jobs: - build: - runs-on: ubuntu-latest + tagged-release: + name: "Tagged Release" + runs-on: "ubuntu-latest" + steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Release - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') + # ... + - name: "Build & test" + run: | + echo "done!" + + - uses: "marvinpinto/action-automatic-releases@latest" with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false files: | - ${{ github.workspace }}/gui/decky_installer.desktop - ${{ github.workspace }}/gui/user_install_script.sh + LICENSE.txt + *.jar |
