Update build-container.yaml
This commit is contained in:
parent
142aee4e41
commit
7390e50445
1 changed files with 33 additions and 33 deletions
66
.github/workflows/build-container.yaml
vendored
66
.github/workflows/build-container.yaml
vendored
|
|
@ -1,34 +1,34 @@
|
||||||
name: Build Container
|
# name: Build Container
|
||||||
|
|
||||||
on:
|
# on:
|
||||||
workflow_run:
|
# workflow_run:
|
||||||
workflows: [Update Version number]
|
# workflows: [Update Version number]
|
||||||
types:
|
# types:
|
||||||
- completed
|
# - completed
|
||||||
jobs:
|
# jobs:
|
||||||
docker:
|
# docker:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v4
|
# uses: actions/checkout@v4
|
||||||
- name: Set up QEMU
|
# - name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
# uses: docker/setup-qemu-action@v3
|
||||||
- name: Set up Docker Buildx
|
# - name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
# uses: docker/setup-buildx-action@v3
|
||||||
- name: Login to GHCR
|
# - name: Login to GHCR
|
||||||
uses: docker/login-action@v3
|
# uses: docker/login-action@v3
|
||||||
if: github.event_name != 'pull_request'
|
# if: github.event_name != 'pull_request'
|
||||||
with:
|
# with:
|
||||||
registry: ghcr.io
|
# registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
# username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
# password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Build and push
|
# - name: Build and push
|
||||||
id: docker_build
|
# id: docker_build
|
||||||
uses: docker/build-push-action@v5
|
# uses: docker/build-push-action@v5
|
||||||
with:
|
# with:
|
||||||
context: .
|
# context: .
|
||||||
push: true
|
# push: true
|
||||||
platforms: linux/amd64,linux/arm64
|
# platforms: linux/amd64,linux/arm64
|
||||||
tags: |
|
# tags: |
|
||||||
ghcr.io/${{ github.repository_owner }}/fedifetcher:${{ github.ref_name }}
|
# ghcr.io/${{ github.repository_owner }}/fedifetcher:${{ github.ref_name }}
|
||||||
ghcr.io/${{ github.repository_owner }}/fedifetcher:latest
|
# ghcr.io/${{ github.repository_owner }}/fedifetcher:latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue