token setup #17
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: build and push containers to GHCR.io | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
login: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GHCR_TOKEN }} | |
logout: false | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# directory: [ api, cli ] | |
directory: [ cli ] | |
platform: [ linux/amd64 ] | |
# platform: [ linux/amd64, linux/arm64 ] | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
- name: setup docker buildx | |
uses: docker/setup-buildx-action@v3 | |
# Add support for more platforms with QEMU (optional) | |
# https://github.com/docker/setup-qemu-action | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Build and push the Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: ./${{ matrix.directory }} | |
push: true | |
tags: ghcr.io/${{ github.repository_owner }}/hamframe-${{ matrix.directory }}:latest | |
platforms: ${{ matrix.platform }} |