Skip to content

Commit

Permalink
added a gh action to publish acorn
Browse files Browse the repository at this point in the history
  • Loading branch information
samkulkarni20 authored Oct 17, 2023
1 parent 7c7cfab commit bf3d3a1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish Acorn image
on:
push:
tags:
- "v[0-9]*"

jobs:
publish:
name: Publish
runs-on: buildjet-4vcpu-ubuntu-2204
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: acorn-io/actions-setup@v2
with:
acorn-version: "main"
- name: Login to GHCR
uses: acorn-io/actions-login@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Publish with signature
run: |
TAG=${GITHUB_REF#refs/*/}
acorn build --platform linux/amd64 --platform linux/arm64 --push -t ghcr.io/infracloudio/dotnetcore-acorn:${TAG} .

0 comments on commit bf3d3a1

Please sign in to comment.