Skip to content

Commit

Permalink
Merge branch 'main' of github.com:abcdesktopio/oc.postmantest
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandredevely committed Oct 9, 2023
2 parents 1898be5 + b3cf876 commit 4fb9a78
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
imagetag: "${{ github.event.client_payload.ref || github.ref_name }}"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
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 DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
push: true
tags: abcdesktopio/oc.postmantest:${{ env.imagetag }}

0 comments on commit 4fb9a78

Please sign in to comment.