vagrant/.github/workflows/release.yml
dependabot[bot] f9e2630d69
Some checks failed
/ sync-acceptance (push) Has been cancelled
Bump actions/checkout from 6.0.1 to 6.0.2 (#13784)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8e8c483db8...de0fac2e45)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-08 10:09:49 +05:30

19 lines
526 B
YAML

name: Vagrant Release
on:
push:
tags: 'v*'
jobs:
trigger-release:
if: github.repository == 'hashicorp/vagrant'
name: Trigger Installers Build
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Trigger Build
run: ./.ci/release "${TAG}" "${COMMIT_ID}"
env:
HASHIBOT_TOKEN: ${{ secrets.HASHIBOT_TOKEN }}
TAG: ${{ github.ref }}
COMMIT_ID: ${{ github.sha }}