Skip to content

Commit

Permalink
Update gh-issue.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pashutk committed Jun 5, 2024
1 parent d6d1ca8 commit 9b423f1
Showing 1 changed file with 35 additions and 13 deletions.
48 changes: 35 additions & 13 deletions .github/workflows/gh-issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,43 @@ on:
paths:
- 'packages/gh-issue/**'
- 'packages/common/**'

jobs:
push_to_registry:
name: Push Docker image to atndr.net registry
name: Push Docker image to registry
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Push to Docker registry
uses: docker/build-push-action@v1
- 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 Docker Hub
uses: docker/login-action@v3
with:
registry: docker.atndr.net
repository: bots/gh-issue
username: ${{ secrets.ATNDR_DOCKER_USERNAME }}
password: ${{ secrets.ATNDR_DOCKER_PASSWORD }}
tag_with_ref: true
tag_with_sha: true
path: packages
dockerfile: ./packages/gh-issue/Dockerfile
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: pashutk/gh-issue
tags: |
type=ref,event=branch
type=ref,event=pr
type=ref,event=tag
type=sha,prefix=sha-
- name: Build and push
uses: docker/build-push-action@v5
with:
context: packages
file: ./packages/gh-issue/Dockerfile
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit 9b423f1

Please sign in to comment.