diff options
| author | TrainDoctor <traindoctor@protonmail.com> | 2022-09-04 18:18:51 -0700 |
|---|---|---|
| committer | TrainDoctor <traindoctor@protonmail.com> | 2022-09-04 18:18:51 -0700 |
| commit | 5f469bfb1628ffe17eb7921359682d6b24e380c4 (patch) | |
| tree | 1779e2f026957f761eee6f57112255a76bc648ca /.github | |
| parent | acaf6c72e48e2bbb42b921292d49c1d157306d0b (diff) | |
| download | decky-loader-5f469bfb1628ffe17eb7921359682d6b24e380c4.tar.gz decky-loader-5f469bfb1628ffe17eb7921359682d6b24e380c4.zip | |
Merge ci-for-auto-update to main
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 98 |
1 files changed, 17 insertions, 81 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2518c6cd..458943f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,11 +54,18 @@ jobs: run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data ./backend/static:/static --add-data ./backend/legacy:/legacy ./backend/*.py - name: Upload package artifact ⬆️ + if: ${{ !env.ACT }} uses: actions/upload-artifact@v3 with: name: PluginLoader path: ./dist/PluginLoader + - name: Download package artifact locally + if: ${{ env.ACT }} + uses: actions/upload-artifact@v3 + with: + path: ./dist/PluginLoader + release: name: Release the package if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.release == 'release' }} @@ -77,6 +84,7 @@ jobs: - name: Release 📦 uses: softprops/action-gh-release@v1 + if: ${{ !env.ACT }} with: name: Release ${{ steps.tag_version.outputs.new_tag }} tag_name: ${{ steps.tag_version.outputs.new_tag }} @@ -90,6 +98,12 @@ jobs: runs-on: ubuntu-latest steps: + - name: Install semver-tool asdf + uses: asdf-vm/actions/install@v1 + with: + tool_versions: | + semver 3.3.0 + - name: Checkout 🧰 uses: actions/checkout@v3 @@ -98,13 +112,7 @@ jobs: with: name: PluginLoader path: dist - - - name: Install semver-tool asdf - uses: asdf-vm/actions/install@v1 - with: - tool_versions: | - semver 3.3.0 - + - name: Get tag 🏷️ id: old_tag uses: rafarlopes/get-latest-pre-release-tag-action@v1 @@ -124,89 +132,17 @@ jobs: - name: Push tag 📤 uses: rickstaa/action-create-tag@v1.3.2 - if: ${{ steps.ready_tag.outputs.tag_name && github.event_name == 'workflow_dispatch' }} + if: ${{ steps.ready_tag.outputs.tag_name && github.event_name == 'workflow_dispatch' && !env.ACT }} with: tag: ${{ steps.ready_tag.outputs.tag_name }} message: Pre-release ${{ steps.ready_tag.outputs.tag_name }} - name: Release 📦 uses: softprops/action-gh-release@v1 - if: ${{ github.event_name == 'workflow_dispatch' }} + if: ${{ github.event_name == 'workflow_dispatch' && !env.ACT }} with: name: Prerelease ${{ steps.ready_tag.outputs.tag_name }} tag_name: ${{ steps.ready_tag.outputs.tag_name }} files: ./dist/PluginLoader prerelease: true generate_release_notes: true - - # nightly: - # name: Release the nightly version of the package - # if: ${{ github.event_name == 'schedule' }} - # needs: build - # runs-on: ubuntu-latest - - # steps: - # - name: Checkout 🧰 - # uses: actions/checkout@v3 - - # - name: Fetch package artifact ⬇️ - # uses: actions/download-artifact@v3 - # with: - # name: PluginLoader - # path: dist - - # - name: Get tag 🏷️ - # id: old_tag - # uses: rafarlopes/get-latest-pre-release-tag-action@v1 - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # with: - # repository: 'decky-loader' - - # - name: Prepare tag ⚙️ - # id: ready_tag - # run: | - # export VERSION=${{ steps.old_tag.outputs.tag }} - # export COMMIT=$(git log -1 --pretty=format:%h) - # echo ::set-output name=tag_name::$(sed -r 's/(-.*)?-pre$//' <<< $VERSION)-$COMMIT-nightly - - # - name: Push tag 📤 - # uses: rickstaa/action-create-tag@v1.3.2 - # if: ${{ steps.ready_tag.outputs.tag_name && github.event_name == 'workflow_dispatch' }} - # with: - # tag: ${{ steps.ready_tag.outputs.tag_name }} - # message: Nightly ${{ steps.ready_tag.outputs.tag_name }} - - # - name: Release 📦 - # uses: softprops/action-gh-release@v1 - # if: ${{ github.event_name == 'workflow_dispatch' }} - # with: - # name: Prerelease ${{ steps.ready_tag.outputs.tag_name }} - # tag_name: ${{ steps.ready_tag.outputs.tag_name }} - # files: ./dist/PluginLoader - # prerelease: true - # generate_release_notes: true - - # - name: Bump prerelease ⏫ - # id: bump - # if: ${{ github.event_name == 'schedule' }} - # run: | - # git_hash=$(git rev-parse --short "$GITHUB_SHA") - # echo ::set-output new_tag="nightly-$git_hash" - - # - name: Push tag 📤 - # uses: rickstaa/action-create-tag@v1.3.2 - # if: ${{ github.event_name == 'schedule' }} - # with: - # tag: ${{ steps.bump.outputs.new_tag }} - # message: Nightly ${{ steps.bump.outputs.new_tag }} - - # - name: Release 📦 - # uses: softprops/action-gh-release@v1 - # if: ${{ github.event_name == 'schedule' }} - # with: - # name: Nightly ${{ steps.bump.outputs.new_tag }} - # tag_name: ${{ steps.bump.outputs.new_tag }} - # files: ./dist/PluginLoader - # prerelease: true - # generate_release_notes: true |
