Skip to content

workflows: switch container build runners back to ubuntu-latest #44

workflows: switch container build runners back to ubuntu-latest

workflows: switch container build runners back to ubuntu-latest #44

# Build and push Windows builder container
name: Container - Windows
on:
push:
branches: [main]
paths: [.github/workflows/container-windows.yml, builder/windows/*]
pull_request:
branches: [main]
paths: [.github/workflows/container-windows.yml, builder/windows/*]
schedule:
- cron: "40 14 1 * *"
workflow_dispatch:
permissions:
contents: read
packages: write
# Separate PRs can run concurrently; everything else has to queue
concurrency: container-windows-${{ github.event.number }}
env:
CONTAINER_IMAGE: ghcr.io/${{ github.repository_owner }}/winbuild-builder:latest
jobs:
container:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Build container
run: |
podman build -t $CONTAINER_IMAGE builder/windows
- name: Push container
if: github.event_name != 'pull_request'
run: |
echo "${{ secrets.GITHUB_TOKEN }}" |
podman login ghcr.io -u $ --password-stdin
podman push $CONTAINER_IMAGE