Update build.yml #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build template | |
on: | |
push: | |
branches: | |
- 'master' | |
- '152-build-on-github-actions' | |
workflow_dispatch: | |
env: | |
VAGRANT_CLOUD_TOKEN: ${{ secrets.VAGRANT_CLOUD_TOKEN }} | |
GITHUB_KEY: ${{ secrets.GITHUB_KEY }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: install vagrant and virtualbox | |
run: | | |
wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg | |
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list | |
sudo apt update && sudo apt install vagrant virtualbox | |
- name: print versions and install plugin | |
run: | | |
vagrant --version | |
vboxmanage --version | |
vagrant plugin install vagrant-disksize | |
- name: authenticate with vagrant cloud | |
run: | | |
vagrant cloud auth login --token $VAGRANT_CLOUD_TOKEN | |
- name: vagrant up | |
run: | | |
vagrant up | |
- name: vagrant halt | |
run: | | |
vagrant halt |