Publish Docker image (develop) #286
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 Docker image (develop) | |
on: | |
push: | |
branches: | |
- develop | |
workflow_dispatch: | |
jobs: | |
push_to_registry: | |
name: Push Docker image to Container Registry | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/[email protected] | |
- name: Get commit sha | |
run: echo "COMMIT_SHA=$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV | |
- name: Add SSH key | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
run: | | |
mkdir -p ~/.ssh | |
ssh-keyscan -p ${{ secrets.ARM_NODE_PORT }} -H ${{ secrets.ARM_NODE_ADDR }} >> ~/.ssh/known_hosts | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
echo "${{ secrets.SSH_PRIVATE_KEY }}" | ssh-add - | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/[email protected] | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
with: | |
endpoint: unix:///var/run/docker.sock | |
platforms: linux/amd64 | |
append: | | |
- endpoint: ssh://${{ secrets.ARM_NODE_USER }}@${{ secrets.ARM_NODE_ADDR }}:${{ secrets.ARM_NODE_PORT }} | |
platforms: linux/arm64 | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ghcr.io/${{ github.repository }}:${{ env.COMMIT_SHA }}, ghcr.io/${{ github.repository }}:develop | |
- name: Log in to Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and Push to Container registry | |
uses: docker/build-push-action@v5 | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
with: | |
builder: ${{ steps.buildx.outputs.name }} | |
context: . | |
push: true | |
platforms: ${{ steps.buildx.outputs.platforms }} | |
provenance: false | |
tags: ghcr.io/${{ github.repository }}:${{ env.COMMIT_SHA }}, ghcr.io/${{ github.repository }}:develop | |
labels: ${{ env.COMMIT_SHA }}, develop |