Add names and make the variable reference be correct
This commit is contained in:
parent
f1521992a2
commit
5c030c680d
1 changed files with 5 additions and 2 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
on: [ workflow_dispatch ]
|
on: [ workflow_dispatch ]
|
||||||
jobs:
|
jobs:
|
||||||
create-artifacts:
|
create-artifacts:
|
||||||
|
name: "Create artifacts"
|
||||||
runs-on: act
|
runs-on: act
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
|
|
@ -38,10 +39,11 @@ jobs:
|
||||||
|
|
||||||
|
|
||||||
forgejo-release:
|
forgejo-release:
|
||||||
|
name: "Create Forgejo release"
|
||||||
runs-on: act
|
runs-on: act
|
||||||
needs:
|
needs:
|
||||||
- create-artifacts
|
- create-artifacts
|
||||||
if: var.RELEASE_TO_FORGEJO == true
|
if: vars.RELEASE_TO_FORGEJO == true
|
||||||
steps:
|
steps:
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
|
@ -63,9 +65,10 @@ jobs:
|
||||||
|
|
||||||
github-release:
|
github-release:
|
||||||
runs-on: act
|
runs-on: act
|
||||||
|
name: "Create Github release"
|
||||||
needs:
|
needs:
|
||||||
- create-artifacts
|
- create-artifacts
|
||||||
if: var.RELEASE_TO_GITHUB == true
|
if: vars.RELEASE_TO_GITHUB == true
|
||||||
steps:
|
steps:
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue