Skip to content

Full Vagrant Development Build #5

Full Vagrant Development Build

Full Vagrant Development Build #5

Workflow file for this run

name: Full Vagrant Development Build
on:
push:
branches: 'build-*'
workflow_dispatch:
jobs:
trigger-build:
if: github.repository == 'hashicorp/vagrant'
name: Trigger Vagrant Development Build
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v3
- name: Trigger Development Build
run: ./.ci/dev-build "${BRANCH}" "${COMMIT_ID}" build
env:
HASHIBOT_TOKEN: ${{ secrets.HASHIBOT_TOKEN }}
BRANCH: ${{ github.ref_name }}
COMMIT_ID: ${{ github.sha }}