mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-01-18 06:45:38 +00:00
On branch feat/godot-configurator
Changes to be committed: modified: ../../.github/workflows/build-configurator.yml modified: ../../.github/workflows/go-simple.yml
This commit is contained in:
parent
2ac17978ea
commit
8791f0b23f
20
.github/workflows/build-configurator.yml
vendored
20
.github/workflows/build-configurator.yml
vendored
|
@ -29,17 +29,11 @@ jobs:
|
||||||
relative_export_path: ../../
|
relative_export_path: ../../
|
||||||
archive_output: true
|
archive_output: true
|
||||||
|
|
||||||
# - name: Upload Linux artifact
|
- name: Upload Linux artifact
|
||||||
# uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
# with:
|
|
||||||
# name: Godot Linux Configurator
|
|
||||||
# path: /home/runner/work/linux.zip
|
|
||||||
|
|
||||||
|
|
||||||
- name: create release
|
|
||||||
uses: ncipollo/release-action@v1.11.2
|
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
name: Godot Linux Configurator
|
||||||
generateReleaseNotes: true
|
path: /home/runner/work/linux.zip
|
||||||
tag: ${{ github.ref_name }}
|
|
||||||
artifacts: ${{ steps.export.outputs.archive_directory }}/* # Added "/*" at the end is glob pattern match for this action
|
|
||||||
|
|
4
.github/workflows/go-simple.yml
vendored
4
.github/workflows/go-simple.yml
vendored
|
@ -28,13 +28,13 @@ jobs:
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: Client - ${{ matrix.platform }}
|
name: ${{ matrix.platform }}
|
||||||
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|
||||||
- name: Upload Release Asset 🚀
|
- name: Upload Release Asset 🚀
|
||||||
uses: svenstaro/upload-release-action@v2
|
uses: svenstaro/upload-release-action@v2
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
file: "Client - linux.zip"
|
file: tools/configurator/linux.zip
|
||||||
tag: ${{env.TAG}}
|
tag: ${{env.TAG}}
|
||||||
overwrite: true
|
overwrite: true
|
||||||
file_glob: false
|
file_glob: false
|
Loading…
Reference in a new issue