Skip to content

Publish Debian & Ubuntu Base Images #77

Publish Debian & Ubuntu Base Images

Publish Debian & Ubuntu Base Images #77

Workflow file for this run

on:
push:
branches:
- main
paths:
- 'base/publish/*'
pull_request:
branches:
- main
paths:
- 'base/publish/*'
schedule:
- cron: '0 0 * * 2'
workflow_dispatch:
name: Publish Debian & Ubuntu Base Images
jobs:
debian:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
packages: write
id-token: write
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +%s)"
- name: Build and push [Debian]
uses: docker/build-push-action@v5
with:
context: base/debian
platforms: linux/arm64, linux/amd64, linux/386
push: ${{ github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
tags: ghcr.io/railwayapp/nixpacks:debian, ghcr.io/railwayapp/nixpacks:debian-${{ steps.date.outputs.date }}
- name: Build and push [Ubuntu]
uses: docker/build-push-action@v5
with:
context: base/ubuntu
platforms: linux/arm64, linux/amd64
push: ${{ github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
tags: ghcr.io/railwayapp/nixpacks:ubuntu, ghcr.io/railwayapp/nixpacks:latest, ghcr.io/railwayapp/nixpacks:ubuntu-${{ steps.date.outputs.date }}
- name: Bump base image
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
run: |
sed -i 's/nixpacks:debian-.*/nixpacks:debian-${{ steps.date.outputs.date }}";/g' src/nixpacks/images.rs
sed -i 's/nixpacks:ubuntu-.*/nixpacks:ubuntu-${{ steps.date.outputs.date }}";/g' src/nixpacks/images.rs
- name: Create Pull Request
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
uses: peter-evans/create-pull-request@v6
with:
base: main
token: ${{ secrets.COMMITTER_TOKEN }}
commit-message: Bump base image
branch: publish-${{ steps.date.outputs.date }}
delete-branch: true
title: Bump base images to `${{ steps.date.outputs.date }}`
labels: release/patch
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push to Docker Hub [Debian]
uses: docker/build-push-action@v5
with:
context: base/debian
platforms: linux/arm64, linux/amd64, linux/386
push: ${{ github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
tags: railwayapp/nixpacks:debian, railwayapp/nixpacks:latest, railwayapp/nixpacks:debian-${{ steps.date.outputs.date }}
- name: Build and push to Docker Hub [Ubuntu]
uses: docker/build-push-action@v5
with:
context: base/ubuntu
platforms: linux/arm64, linux/amd64
push: ${{ github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
tags: railwayapp/nixpacks:ubuntu, railwayapp/nixpacks:ubuntu-${{ steps.date.outputs.date }}