20 lines
566 B
YAML
20 lines
566 B
YAML
name: Windows Vagrant Development Build
|
|
on:
|
|
push:
|
|
branches: 'dev-windows-*'
|
|
|
|
jobs:
|
|
trigger-build:
|
|
if: github.repository == 'hashicorp/vagrant'
|
|
name: Trigger Vagrant Windows 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-windows
|
|
env:
|
|
HASHIBOT_TOKEN: ${{ secrets.HASHIBOT_TOKEN }}
|
|
BRANCH: ${{ github.ref_name }}
|
|
COMMIT_ID: ${{ github.sha }}
|