mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
Actually fix it i think
This commit is contained in:
parent
f7f59c8cb3
commit
c6f62f3b68
1 changed files with 11 additions and 5 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -110,6 +110,12 @@ jobs:
|
|||
if: github.ref == 'refs/heads/main'
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Get version
|
||||
uses: juliangruber/read-file-action@v1.1.6
|
||||
with:
|
||||
path: ${{ github.workspace }}/VERSION
|
||||
id: version
|
||||
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
|
@ -117,18 +123,18 @@ jobs:
|
|||
|
||||
- uses: vimtor/action-zip@v1
|
||||
with:
|
||||
files: Geode.dylib GeodeBootstrapper.dylib
|
||||
dest: macOS.zip
|
||||
files: geode-v${{ steps.version.outputs.content }}-mac/Geode.dylib geode-v${{ steps.version.outputs.content }}-mac/GeodeBootstrapper.dylib
|
||||
dest: geode-nightly-mac.zip
|
||||
|
||||
- uses: vimtor/action-zip@v1
|
||||
with:
|
||||
files: Geode.dll GeodeBootstrapper.dll Geode.lib
|
||||
dest: Windows.zip
|
||||
files: geode-v${{ steps.version.outputs.content }}-win/Geode.dll geode-v${{ steps.version.outputs.content }}-win/GeodeBootstrapper.dll geode-v${{ steps.version.outputs.content }}-win/Geode.lib
|
||||
dest: geode-nightly-win.zip
|
||||
|
||||
- name: Update release
|
||||
uses: IsaacShelton/update-existing-release@v1.3.1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
files: ./macOS.zip ./Windows.zip
|
||||
files: ./geode-nightly-mac.zip ./geode-nightly-win.zip
|
||||
release: Nightly
|
||||
prerelease: true
|
||||
|
|
Loading…
Reference in a new issue