diff options
author | George L. Albany <Megacake1234@gmail.com> | 2023-05-30 20:41:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 20:41:42 +0200 |
commit | 88817aeb97f93e45583e292b299860dbd90da02f (patch) | |
tree | 40432413d5ede042434c272c35822a90a140b227 /.github/workflows | |
parent | 6f2ef06aa2d7fc4cf8c34b2aaa844c2430e4ab3e (diff) | |
parent | 4d192605d6be1809cfb1d0d3d266b183f83cdc6f (diff) |
Merge pull request #127 from OpenVicProject/fix/build-permsv0.02_Mappa_Mundi
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/builds.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 43879be..8693696 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -10,6 +10,7 @@ jobs: build: runs-on: ${{matrix.os}} name: ${{matrix.name}} + permissions: write-all strategy: fail-fast: false matrix: @@ -110,8 +111,8 @@ jobs: uses: thedoctor0/zip-release@0.7.1 with: type: 'zip' - filename: 'libopenvic.${{ matrix.platform }}.${{ matrix.arch }}.zip' - path: '${{ github.workspace }}/game/bin/openvic/' + filename: '../../../libopenvic.${{ matrix.platform }}.${{ matrix.arch }}.zip' + directory: '${{ github.workspace }}/game/bin/openvic/' if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - name: Create and upload asset @@ -209,7 +210,7 @@ jobs: omitNameDuringUpdate: true omitBodyDuringUpdate: true token: ${{ secrets.GITHUB_TOKEN }} - artifacts: ${{ steps.export.outputs.archive_directory }}/* + artifacts: ${{ steps.export_game.outputs.archive_directory }}/* - name: Upload artifact uses: actions/upload-artifact@v3 |