mirror of
https://github.com/DeterminateSystems/determinate-nix-action.git
synced 2026-07-12 19:03:54 +00:00
Bumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action). Updates `actions/checkout` from 6.0.3 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](df4cb1c069...9c091bb21b) Updates `zizmorcore/zizmor-action` from 0.5.6 to 0.5.7 - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](5f14fd08f7...192e21d79a) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: zizmorcore/zizmor-action dependency-version: 0.5.7 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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
- name: Create the short tag
|
|
env:
|
|
SHORTTAG: ${{ steps.check_tag.outputs.shorttag }}
|
|
run: |
|
|
git tag --force "$SHORTTAG"
|
|
git push --force origin "$SHORTTAG"
|