This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
Merge pull request #10 from cloudnautique/main #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Acorn service image | |
on: | |
push: | |
tags: | |
- "**/v[0-9]*" | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: acorn-io/actions-setup@v2 | |
with: | |
acorn-version: "main" | |
- uses: acorn-io/actions-login@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: set image and tag | |
run: ./scripts/setup_tags.sh | |
- name: Build and Publish | |
run: | | |
acorn build --platform linux/amd64 --platform linux/arm64 --push -t ghcr.io/acorn-io/aws/${IMAGE}:${TAG} ./${IMAGE} |