Skip to content

Using vagrant-box.sh CI/CD script #1

Using vagrant-box.sh CI/CD script

Using vagrant-box.sh CI/CD script #1

Workflow file for this run

---
name: main
on:
push: # All branches and tags
schedule:
# Runs automatically on the 27th of every month at 04:30 UTC
- cron: "30 04 27 * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
job:
uses: dmotte/misc/.github/workflows/cicd-with-script.yml@main
with:
# We use this virtual environment because it supports nested
# virtualization.
# See https://github.com/actions/virtual-environments/issues/433 for more
# information
runs-on: macos-12
env: >
BOX_AUTHOR=dmotte BOX_NAME=k3sbox
BOX_DESCRIPTION='Debian Vagrant box with K3s
(github.com/dmotte/vagrant-k3sbox)'
path: $GITHUB_ACTION_PATH/../../scripts/cicd/vagrant-box.sh
secrets:
secret01: ${{ secrets.VAGRANTCLOUD_TOKEN }}