ci/cd - fix syntax error in push-github wf

This commit is contained in:
florian 2023-08-15 11:44:27 +02:00
parent 08ce31bb0f
commit 244b912476
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
1 changed files with 6 additions and 6 deletions

View File

@ -18,14 +18,14 @@ jobs:
- uses: actions/checkout@v3
# Get PDF doc
- name: Get documentation
if: inputs.VERSION != "testing"
if: inputs.VERSION != 'testing'
uses: actions/download-artifact@v3
with:
name: BunkerWeb_documentation_v${{ inputs.VERSION }}.pdf
# Create tag
- uses: rickstaa/action-create-tag@v1
name: Create tag
if: inputs.VERSION != "testing"
if: inputs.VERSION != 'testing'
with:
tag: "v${{ inputs.VERSION }}"
message: "v${{ inputs.VERSION }}"
@ -33,14 +33,14 @@ jobs:
# Create tag
- uses: rickstaa/action-create-tag@v1
name: Create tag
if: inputs.VERSION == "testing"
if: inputs.VERSION == 'testing'
with:
tag: "${{ inputs.VERSION }}"
message: "${{ inputs.VERSION }}"
force_push_tag: true
# Extract changelog
- name: Extract changelog
if: inputs.VERSION != "testing"
if: inputs.VERSION != 'testing'
id: getchangelog
run: |
content=$(awk -v n=2 '/##/{n--}; n > 0' CHANGELOG.md | grep -v '# Changelog' | grep -v '##' | sed '/^$/d')
@ -50,7 +50,7 @@ jobs:
echo "::set-output name=content::$content"
# Create release
- name: Create release
if: inputs.VERSION != "testing"
if: inputs.VERSION != 'testing'
uses: softprops/action-gh-release@v1
with:
body: |
@ -74,7 +74,7 @@ jobs:
files: BunkerWeb_documentation_v${{ inputs.VERSION }}.pdf
# Create release
- name: Create release
if: inputs.VERSION == "testing"
if: inputs.VERSION == 'testing'
uses: softprops/action-gh-release@v1
with:
body: |