Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ jobs:
run: echo "date=$(date +%s)" >> $GITHUB_OUTPUT

- name: Build and push [Ubuntu]
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
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: Build and push [Debian]
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: base/debian
platforms: linux/arm64, linux/amd64, linux/386
Expand Down Expand Up @@ -91,15 +91,15 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push to Docker Hub [Ubuntu]
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
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 }}

- name: Build and push to Docker Hub [Debian]
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: base/debian
platforms: linux/arm64, linux/amd64, linux/386
Expand Down
Loading