Skip to content

Commit

Permalink
Adding new Github Actions Workflow - Publish docker image to DockerHub
Browse files Browse the repository at this point in the history
  • Loading branch information
DamianFigiel committed Oct 2, 2024
1 parent 7b131d7 commit 9447211
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/push_image_to_dockerhub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish docker image to DockerHub

on:
workflow_dispatch:

release:
types: [created]

jobs:
push:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read

steps:
- uses: actions/checkout@v4

- name: Login, build, tag, and push image to DockerHub
env:
DOCKERHUB_API_USERNAME: ${{ secrets.DOCKERHUB_API_USERNAME }}
DOCKERHUB_API_TOKEN: ${{ secrets.DOCKERHUB_API_TOKEN }}
DOCKER_REPOSITORY: indexer-matrixchain
IMAGE_TAG: ${{ github.ref_name }}
run: |
docker login --username $DOCKERHUB_API_USERNAME --password $DOCKERHUB_API_TOKEN
docker build -t enjin/$DOCKER_REPOSITORY:$IMAGE_TAG .
docker push enjin/$DOCKER_REPOSITORY:$IMAGE_TAG
docker tag enjin/$DOCKER_REPOSITORY:$IMAGE_TAG enjin/$DOCKER_REPOSITORY:latest
docker push enjin/$DOCKER_REPOSITORY:latest

0 comments on commit 9447211

Please sign in to comment.