mirror of
https://github.com/DeterminateSystems/determinate-nix-action.git
synced 2026-07-12 19:03:54 +00:00
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout).
Updates `actions/checkout` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](de0fac2e45...df4cb1c069)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: actions
...
Signed-off-by: dependabot[bot] <support@github.com>
34 lines
982 B
YAML
34 lines
982 B
YAML
on:
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
jobs:
|
|
PushLooseTag:
|
|
environment: production
|
|
permissions:
|
|
id-token: write
|
|
contents: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Optionally tag a vMAJOR tag
|
|
id: check_tag
|
|
env:
|
|
VERSION: ${{ github.ref_name }}
|
|
run: |
|
|
if ! echo "$VERSION" | grep -q "^v[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+$"; then
|
|
echo "version needs to be a version, in x.y.z format."
|
|
echo "Therefore, not pushing a v<short>"
|
|
exit 0
|
|
fi
|
|
|
|
shorttag=$(echo "$VERSION" | cut -d'.' -f1)
|
|
echo "shorttag=$shorttag" >> "$GITHUB_OUTPUT"
|
|
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
- name: Create the short tag
|
|
env:
|
|
SHORTTAG: ${{ steps.check_tag.outputs.shorttag }}
|
|
run: |
|
|
git tag --force "$SHORTTAG"
|
|
git push --force origin "$SHORTTAG"
|