Pluralize outputs
This commit is contained in:
parent
0179121c87
commit
6c150b9b0e
1 changed files with 4 additions and 4 deletions
|
|
@ -14,12 +14,12 @@ jobs:
|
||||||
|
|
||||||
- name: Extract version from manifest
|
- name: Extract version from manifest
|
||||||
id: version
|
id: version
|
||||||
run: cat system.json | echo version=`jq -r ".version"` >> "${{env.FORGEJO_OUTPUT}}"
|
run: cat system.json | echo version=`jq -r ".version"` >> "$FORGEJO_OUTPUT"
|
||||||
|
|
||||||
- name: Assert that the tag doesn't exist
|
- name: Assert that the tag doesn't exist
|
||||||
run: node scripts/tagExists.mjs
|
run: node scripts/tagExists.mjs
|
||||||
env:
|
env:
|
||||||
TAG_NAME: "v${{steps.version.output.version}}"
|
TAG_NAME: "v${{steps.version.outputs.version}}"
|
||||||
|
|
||||||
# - name: Build compendia
|
# - name: Build compendia
|
||||||
# run: "npm run data:build"
|
# run: "npm run data:build"
|
||||||
|
|
@ -44,7 +44,7 @@ jobs:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
needs:
|
needs:
|
||||||
- create-artifacts
|
- create-artifacts
|
||||||
if: var.RELEASE_TO_FORGEJO
|
if: var.RELEASE_TO_FORGEJO == true
|
||||||
steps:
|
steps:
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
|
@ -68,7 +68,7 @@ jobs:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
needs:
|
needs:
|
||||||
- create-artifacts
|
- create-artifacts
|
||||||
if: var.RELEASE_TO_GITHUB
|
if: var.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