summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
blob: 2ed7ca2fc0c855f5980afa2f72fee43b94a6fabc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: "release"

on:
  push:
    tags:
      - "*"

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout 🧰
        uses: actions/checkout@v3

      - uses: xresloader/upload-to-github-release@main
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        with:
          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