Skip to content

Commit

Permalink
feat: Automate Docker image publishing on merge to main (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
volovyks authored Nov 14, 2023
1 parent 50d8df0 commit 6b3f0c0
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Docker Image

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
permissions:
packages: write

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Login to GitHub Container Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Build Docker image
uses: docker/build-push-action@v4
with:
context: .
tags: ghcr.io/near/sandbox:${{ github.sha }}
load: true
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Push Docker image
run: docker push ghcr.io/near/sandbox:${{ github.sha }}

- name: Push latest Docker image
run: docker tag ghcr.io/near/sandbox:${{ github.sha }} ghcr.io/near/sandbox:latest && docker push ghcr.io/near/sandbox:latest

0 comments on commit 6b3f0c0

Please sign in to comment.