Skip to content

Commit

Permalink
Update main.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
pashutk authored Jun 5, 2024
1 parent be17c3b commit 391626b
Showing 1 changed file with 36 additions and 12 deletions.
48 changes: 36 additions & 12 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,42 @@ on:
- main
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: circlegram/circlegram
username: ${{ secrets.ATNDR_DOCKER_USERNAME }}
password: ${{ secrets.ATNDR_DOCKER_PASSWORD }}
tag_with_ref: true
tag_with_sha: true
build_args: SNOWPACK_PUBLIC_API_ID=${{ secrets.SNOWPACK_PUBLIC_API_ID }},SNOWPACK_PUBLIC_API_HASH=${{ secrets.SNOWPACK_PUBLIC_API_HASH }}
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: pashutk/circlegram
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: .
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
build-args:
- SNOWPACK_PUBLIC_API_ID: ${{ secrets.SNOWPACK_PUBLIC_API_ID }}
- SNOWPACK_PUBLIC_API_HASH: ${{ secrets.SNOWPACK_PUBLIC_API_HASH }}

0 comments on commit 391626b

Please sign in to comment.