diff options
| author | Party Wumpus <48649272+PartyWumpus@users.noreply.github.com> | 2023-01-11 17:29:33 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-11 17:29:33 +0000 |
| commit | 188d3ccf9c017377953f6a1ec5e33ba6d38925d0 (patch) | |
| tree | 9ce3f5e5a68ed02b90f137b6198038ed15e34bfa /.github/workflows/main.yml | |
| parent | 1e308a3e80f604d1292a90a33bc1e6e46d4b7d5e (diff) | |
| download | decky-installer-188d3ccf9c017377953f6a1ec5e33ba6d38925d0.tar.gz decky-installer-188d3ccf9c017377953f6a1ec5e33ba6d38925d0.zip | |
Create main.yml
Diffstat (limited to '.github/workflows/main.yml')
| -rw-r--r-- | .github/workflows/main.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..345c05d --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: Main + +on: push + +jobs: + build: + 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/') + with: + files: | + ${{ github.workspace }}/gui/decky_installer.desktop + ${{ github.workspace }}/gui/user_install_script.sh |
