Skip to content

Commit

Permalink
Update build-container.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
nanos authored Sep 16, 2024
1 parent 142aee4 commit 7390e50
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/build-container.yaml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
name: Build Container
# name: Build Container

on:
workflow_run:
workflows: [Update Version number]
types:
- completed
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/${{ github.repository_owner }}/fedifetcher:${{ github.ref_name }}
ghcr.io/${{ github.repository_owner }}/fedifetcher:latest
# on:
# workflow_run:
# workflows: [Update Version number]
# types:
# - completed
# jobs:
# docker:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Login to GHCR
# uses: docker/login-action@v3
# if: github.event_name != 'pull_request'
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# - name: Build and push
# id: docker_build
# uses: docker/build-push-action@v5
# with:
# context: .
# push: true
# platforms: linux/amd64,linux/arm64
# tags: |
# ghcr.io/${{ github.repository_owner }}/fedifetcher:${{ github.ref_name }}
# ghcr.io/${{ github.repository_owner }}/fedifetcher:latest

0 comments on commit 7390e50

Please sign in to comment.