Skip to content

Commit

Permalink
Added action.
Browse files Browse the repository at this point in the history
  • Loading branch information
petersirka committed Jun 20, 2023
1 parent d7b1404 commit 4701281
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Docker Image CI

on:
workflow_dispatch:

jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
repository: 'totaljs/bannersystem'
ref: 'main'
token: ${{ secrets.ACCESS_TOKEN }}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: docker_build
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm64
tags: totalplatform/bannersystem:latest
push: true
secrets: |
github_token=${{ secrets.ACCESS_TOKEN }}

0 comments on commit 4701281

Please sign in to comment.