mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-06-09 00:32:06 -04:00
19 lines
526 B
YAML
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- name: Trigger Build
|
|
run: ./.ci/release "${TAG}" "${COMMIT_ID}"
|
|
env:
|
|
HASHIBOT_TOKEN: ${{ secrets.HASHIBOT_TOKEN }}
|
|
TAG: ${{ github.ref }}
|
|
COMMIT_ID: ${{ github.sha }}
|