Skip to content

Adjust checks

Adjust checks #12

Workflow file for this run

name: archiso
on:
push:
branches:
- archiso
env:
DEBIAN_FRONTEND: noninteractive
DOCKER_TAG: archiso
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to the GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USER }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build and push image
uses: docker/build-push-action@v5
with:
push: true
context: .
file: ./Dockerfile
tags: |
ghcr.io/netbootxyz/mod-layers:${{ env.DOCKER_TAG }}
ghcr.io/netbootxyz/mod-layers:${{ github.sha }}