summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorParty Wumpus <48649272+PartyWumpus@users.noreply.github.com>2023-01-11 18:10:29 +0000
committerGitHub <noreply@github.com>2023-01-11 18:10:29 +0000
commitaa63ef1b1bfe1091b56830fdac42c86c873ccdf4 (patch)
tree5b1343969e2a7dd99620fbf67fefc9f3c11ff967 /.github
parent1a897bd763f82f285bcccf4cefe0dfbd93a01fe0 (diff)
downloaddecky-installer-aa63ef1b1bfe1091b56830fdac42c86c873ccdf4.tar.gz
decky-installer-aa63ef1b1bfe1091b56830fdac42c86c873ccdf4.zip
Update main.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml32
1 files changed, 15 insertions, 17 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 6b47783..75cf17d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,25 +1,23 @@
-name: "tagged-release"
+name: "release"
on:
push:
- tags:
- - "v*"
+ branches:
+ - main
jobs:
- tagged-release:
- name: "Tagged Release"
- runs-on: "ubuntu-latest"
-
+ build:
+ runs-on: ubuntu-latest
steps:
- # ...
- - name: "Build & test"
- run: |
- echo "done!"
+ - uses: actions/checkout@v1
+ - name: "find env"
- - uses: "marvinpinto/action-automatic-releases@latest"
+ - uses: xresloader/upload-to-github-release@main
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
- repo_token: "${{ secrets.GITHUB_TOKEN }}"
- prerelease: false
- files: |
- ${{ github.workspace }}/gui/decky_installer.desktop
- ${{ github.workspace }}/gui/user_install_script.sh
+ file: "${{ github.workspace }}/gui/decky_installer.desktop;${{ github.workspace }}/gui/user_install_script.sh"
+ delete_file: "random-name-*.txt"
+ branches: "main;dev"
+ verbose: true
+ prerelease: true