diff options
| author | Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> | 2023-01-11 17:35:51 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-11 17:35:51 +0000 |
| commit | 799d06551678093bf831f2d9eee780b59276926c (patch) | |
| tree | f1f327c89692cfd6a7cd681ec9a533e796a45e86 /.github | |
| parent | 4349a6eef318843355d96c716b396b493fd15056 (diff) | |
| download | decky-installer-799d06551678093bf831f2d9eee780b59276926c.tar.gz decky-installer-799d06551678093bf831f2d9eee780b59276926c.zip | |
Update main.yml
Diffstat (limited to '.github')
| -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 |
