Skip to content

Commit

Permalink
Upgrade Pauline bot build
Browse files Browse the repository at this point in the history
  • Loading branch information
pashutk committed Jun 5, 2024
1 parent 3d4b759 commit d6d1ca8
Showing 1 changed file with 23 additions and 13 deletions.
36 changes: 23 additions & 13 deletions .github/workflows/pauline-nemchak.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,29 @@ on:
- '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/pauline-nemchak
username: ${{ secrets.ATNDR_DOCKER_USERNAME }}
password: ${{ secrets.ATNDR_DOCKER_PASSWORD }}
tag_with_ref: true
tag_with_sha: true
path: packages
dockerfile: ./packages/pauline-nemchak/Dockerfile
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: packages
file: ./packages/pauline-nemchak/Dockerfile
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: pashutk/pauline-nemchak-bot:latest

0 comments on commit d6d1ca8

Please sign in to comment.