Skip to content

Commit

Permalink
Add depot
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgb committed Sep 28, 2023
1 parent 1c334d3 commit a6bb018
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
name: Publish to Jamsocket
name: Build and push image

on:
push:
branches: [ "main" ]
branches: [ main ]
tags: [ 'v*.*.*' ]
pull_request:
branches: [ "main" ]
branches: [ main ]

env:
REGISTRY: new.jamcr.io
IMAGE_NAME: ${{ secrets.JAMSOCKET_USER }}/dropfour
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build:
Expand All @@ -20,15 +21,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v2

- uses: depot/setup-action@v1

- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.JAMSOCKET_USER }}
password: ${{ secrets.JAMSOCKET_TOKEN }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract Docker metadata
id: meta
Expand All @@ -41,9 +44,11 @@ jobs:
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
uses: depot/build-push-action@v1
with:
project: 58j0517pw2
context: .
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit a6bb018

Please sign in to comment.