Skip to content

Commit

Permalink
Merge pull request #11 from luridarmawan/main
Browse files Browse the repository at this point in the history
Create docker-image.yml
  • Loading branch information
luridarmawan authored Mar 20, 2024
2 parents 7b43b11 + 9031196 commit d81242c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Docker Image CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

Deploy:
runs-on: ubuntu-latest
steps:
-
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.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: luri/free-pascal:latest

0 comments on commit d81242c

Please sign in to comment.