mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
CI again
This commit is contained in:
parent
5194b35310
commit
357d86c682
1 changed files with 14 additions and 14 deletions
28
.github/workflows/release.yml
vendored
28
.github/workflows/release.yml
vendored
|
@ -2,11 +2,6 @@ name: release
|
||||||
|
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
# on:
|
|
||||||
# push:
|
|
||||||
# tags:
|
|
||||||
# - v**
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-mod:
|
build-mod:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
@ -88,20 +83,25 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: noita-proxy-windows.zip
|
name: noita-proxy-win.zip
|
||||||
path: target/noita-proxy-windows.zip
|
path: target/noita-proxy-win.zip
|
||||||
|
|
||||||
release:
|
release:
|
||||||
name: Release
|
name: Release
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
needs: [build-mod, build-proxy-linux, build-proxy-windows]
|
|
||||||
if: startsWith(github.ref, 'refs/tags/v')
|
if: startsWith(github.ref, 'refs/tags/v')
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
needs: [build-mod, build-proxy-linux, build-proxy-windows]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Download all workflow run artifacts
|
- name: Download all workflow run artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
- run: ls
|
with:
|
||||||
|
merge-multiple: true
|
||||||
|
- name: List artifacts
|
||||||
|
run: ls -R
|
||||||
|
- uses: ncipollo/release-action@v1
|
||||||
|
with:
|
||||||
|
draft: true
|
||||||
|
artifacts: "*.zip"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue