Skip to content

Disable syscall-interceptor #135

Disable syscall-interceptor

Disable syscall-interceptor #135

Workflow file for this run

name: Vib Build
on:
push:
branches: [ "main" ]
workflow_dispatch:
env:
REGISTRY_USER: ${{ github.actor }}
REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: vanilla-os/[email protected]
with:
recipe: 'recipe.yml'
plugins: 'Vanilla-OS/vib-fsguard:v1.2-1'
- name: Build the Docker image
run: docker image build -f Containerfile --tag ghcr.io/vanilla-os/desktop:main .
# Push the image to GHCR (Image Registry)
- name: Push To GHCR
if: github.repository == 'vanilla-os/desktop-image'
run: |
docker login ghcr.io -u ${{ env.REGISTRY_USER }} -p ${{ env.REGISTRY_PASSWORD }}
docker image push "ghcr.io/vanilla-os/desktop:main"