actions: archives are in src/

This commit is contained in:
Jay Lee
2024-05-06 09:43:10 -04:00
committed by GitHub
parent 00d3600881
commit e7323f0b74

View File

@@ -867,9 +867,9 @@ jobs:
if: (github.event_name == 'push' || github.event_name == 'schedule') && matrix.goal == 'build' if: (github.event_name == 'push' || github.event_name == 'schedule') && matrix.goal == 'build'
with: with:
subject-path: | subject-path: |
gam*.tar.xz src/gam*.tar.xz
gam*.zip src/gam*.zip
gam*.msi src/gam*.msi
- name: Archive production artifacts - name: Archive production artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
@@ -877,9 +877,9 @@ jobs:
with: with:
name: gam-binaries-${{ env.GAMOS }}-${{ env.arch }}-${{ matrix.jid }} name: gam-binaries-${{ env.GAMOS }}-${{ env.arch }}-${{ matrix.jid }}
path: | path: |
src/*.tar.xz src/gam*.tar.xz
src/*.zip src/gam*.zip
src/*.msi src/gam*.msi
merge: merge:
if: (github.event_name == 'push' || github.event_name == 'schedule') if: (github.event_name == 'push' || github.event_name == 'schedule')
@@ -895,11 +895,6 @@ jobs:
name: gam-binaries name: gam-binaries
pattern: gam-binaries-* pattern: gam-binaries-*
# - name: Delete Artifacts
# uses: geekyeggo/delete-artifact@v4
# with:
# name: gam-binaries-*
publish: publish:
if: github.event_name == 'push' if: github.event_name == 'push'
runs-on: ubuntu-latest runs-on: ubuntu-latest