vagrant/.github/workflows/dev-macos-build.yml
2025-03-21 11:39:11 -07:00

20 lines
626 B
YAML

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