Skip to content

Commit

Permalink
ci: docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
khodedawsh authored Mar 4, 2024
1 parent deb3541 commit 9490f08
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build

on:
push:
tags:
- 'v*.*.*'

jobs:
build-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: |
dawsh/marznode:latest
dawsh/marznode:${{github.ref_name}}
ghcr.io/khodedawsh/marznode:latest
ghcr.io/khodedawsh/marznode:${{github.ref_name}}

0 comments on commit 9490f08

Please sign in to comment.