Skip to content

Build and Push to SWR #1

Build and Push to SWR

Build and Push to SWR #1

Workflow file for this run

name: Build and Push to SWR
on:
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: server/go.mod
cache-dependency-path: server/go.sum
- name: Set image variables
run: |
echo "SHORT_SHA=${GITHUB_SHA::7}" >> "$GITHUB_ENV"
echo "SWR_IMG=${{ secrets.SWR_REGISTRY }}/${{ secrets.SWR_ORGANIZATION }}/mnemo-server" >> "$GITHUB_ENV"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to SWR
uses: docker/login-action@v3
with:
registry: ${{ secrets.SWR_REGISTRY }}
username: ${{ secrets.SWR_USERNAME }}
password: ${{ secrets.SWR_PASSWORD }}
- name: Build image
run: REGISTRY=${{ secrets.SWR_REGISTRY }}/${{ secrets.SWR_ORGANIZATION }} COMMIT=${{ env.SHORT_SHA }} make docker
- name: Tag latest
run: docker tag "$SWR_IMG:$SHORT_SHA" "$SWR_IMG:latest"
- name: Push image tags
run: |
docker push "$SWR_IMG:$SHORT_SHA"
docker push "$SWR_IMG:latest"