diff --git a/.github/workflows/push-github.yml b/.github/workflows/push-github.yml index d57ea9d3..f435c0e4 100644 --- a/.github/workflows/push-github.yml +++ b/.github/workflows/push-github.yml @@ -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: |