Skip to content

Commit

Permalink
Merge pull request #25 from rlabinc/main-3
Browse files Browse the repository at this point in the history
Create test-build-and-push.yaml
  • Loading branch information
origamiofficial committed Aug 21, 2023
2 parents 59d8d2f + 8113aa3 commit 8a5922d
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/test-build-and-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Test Build & Push
on:
push:

jobs:
job01:
name: Build and publish
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
ref: main
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
${{ secrets.DOCKERHUB_NAMESPACE }}/ngrok-plex
flavor: |
latest=false
tags: |
type=raw,value=test
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: ./
platforms: linux/amd64, linux/arm64, linux/arm/v7, linux/386
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: |
type=registry,ref=${{ secrets.DOCKERHUB_NAMESPACE }}/ngrok-plex:buildcache.test
cache-to: |
type=registry,ref=${{ secrets.DOCKERHUB_NAMESPACE }}/ngrok-plex:buildcache.test,mode=max

0 comments on commit 8a5922d

Please sign in to comment.