mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
20 lines
638 B
YAML
20 lines
638 B
YAML
name: Appimage Vagrant Development Build
|
|
on:
|
|
push:
|
|
branches: 'dev-appimage-*'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
trigger-build:
|
|
if: github.repository == 'hashicorp/vagrant'
|
|
name: Trigger Vagrant Appimage Development Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Code Checkout
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
- name: Trigger Development Build
|
|
run: ./.ci/dev-build "${BRANCH}" "${COMMIT_ID}" build-appimage
|
|
env:
|
|
HASHIBOT_TOKEN: ${{ secrets.HASHIBOT_TOKEN }}
|
|
BRANCH: ${{ github.ref_name }}
|
|
COMMIT_ID: ${{ github.sha }}
|