Skip to content

fix: switch to dynamic private env (#523) #1

fix: switch to dynamic private env (#523)

fix: switch to dynamic private env (#523) #1

Workflow file for this run

name: Docker Build and Push
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
security-events: write
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Docker Setup QEMU
uses: docker/setup-qemu-action@v3
id: qemu
with:
platforms: amd64,arm64
- name: Log into ghcr.io registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Log in to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Read VERSION file
id: version
run: echo "VERSION=$(cat VERSION)" >> "$GITHUB_OUTPUT"
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
file: ./Dockerfile
platforms: linux/amd64,linux/arm64
push: true
cache-from: type=gha
cache-to: type=gha,mode=max
tags: |
ghcr.io/rivenmedia/riven:latest
ghcr.io/rivenmedia/riven:${{ steps.version.outputs.VERSION }}
docker.io/spoked/riven:latest
docker.io/spoked/riven:${{ steps.version.outputs.VERSION }}