Add delete function for ci #22
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: Release CI | |
on: | |
push: | |
branches: [ "nixos-**" ] | |
jobs: | |
build: | |
name: Run build ${{ matrix.BUILDER }} ${{ matrix.ARCH }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
BUILDER: ['virtualbox-iso.virtualbox', 'qemu.qemu'] | |
ARCH: ['x86_64'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
if: ${{matrix.BUILDER == 'virtualbox-iso.virtualbox'}} | |
run: | | |
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/oracle-virtualbox-2016.gpg] https://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib" | sudo tee /etc/apt/sources.list.d/virtualbox.list | |
wget -O- https://www.virtualbox.org/download/oracle_vbox_2016.asc | sudo gpg --yes --output /usr/share/keyrings/oracle-virtualbox-2016.gpg --dearmor | |
sudo apt-get update | |
sudo apt-get install -y virtualbox-6.1 | |
- name: Install dependencies | |
if: ${{matrix.BUILDER == 'qemu.qemu'}} | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y \ | |
qemu-system-x86 \ | |
qemu libvirt-daemon-system | |
- name: Create Vagrant Cloud Box | |
env: | |
ATLAS_TOKEN: ${{ secrets.ATLAS_TOKEN }} | |
run: make vagrantcloud-create | |
- name: Delete Old Vagrant Cloud Box Version | |
env: | |
ATLAS_TOKEN: ${{ secrets.ATLAS_TOKEN }} | |
run: make vagrantcloud-delete | |
- name: Setup `packer` | |
uses: hashicorp/setup-packer@main | |
id: setup | |
with: | |
version: "latest" | |
- name: Run build ${{ matrix.BUILDER }} ${{ matrix.ARCH }} and push box to vagrant cloud | |
env: | |
ATLAS_TOKEN: ${{ secrets.ATLAS_TOKEN }} | |
run: make VERSION=${GITHUB_REF#refs/heads/nixos-} BUILDER=${{ matrix.BUILDER }} packer-build |