Skip to content

chore(deps): update dependency https://github.com/lkubb/salt-extensio… #5

chore(deps): update dependency https://github.com/lkubb/salt-extensio…

chore(deps): update dependency https://github.com/lkubb/salt-extensio… #5

Workflow file for this run

<<<<<<< before updating
=======
---
>>>>>>> after updating

Check failure on line 4 in .github/workflows/tag.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tag.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
name: Tagged Releases
on:
push:
tags:
- "v*" # Only tags starting with "v" for "v1.0.0", etc.
jobs:
get_tag_version:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.get_version.outputs.version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Extract tag name
id: get_version
<<<<<<< before updating
run: echo "::set-output name=version::$(echo ${GITHUB_REF#refs/tags/v})"
=======
run: echo "version=${GITHUB_REF#refs/tags/v}" >> "$GITHUB_OUTPUT"
>>>>>>> after updating
call_central_workflow:
needs: get_tag_version
uses: salt-extensions/central-artifacts/.github/workflows/ci.yml@main
with:
<<<<<<< before updating
setup-vault: true
=======
deploy-docs: true
>>>>>>> after updating
release: true
version: ${{ needs.get_tag_version.outputs.version }}
permissions:
contents: write
id-token: write
<<<<<<< before updating
=======
pages: write
>>>>>>> after updating
pull-requests: read
secrets: inherit