build(deps): bump softprops/action-gh-release from 1 to 2 #10
Workflow file for this run
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: Vib PR | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Rootfs | |
run: | | |
sudo apt install -y debootstrap podman | |
cd rootfs | |
sudo sh build.sh | |
cd .. | |
- uses: vanilla-os/[email protected] | |
- name: Build the Docker image | |
run: podman image build -f Containerfile --tag vanillaos/pico:validation . | |
- name: Upload vanilla-pico-rootfs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: vanilla-pico-rootfs | |
path: rootfs/vanilla-pico.tar.zst | |
- name: Upload Containerfile | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Containerfile | |
path: Containerfile |