You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
45 lines
1.3 KiB
name: Overseerr Preview
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'preview-*'
|
|
|
|
jobs:
|
|
build_and_push:
|
|
name: Build & Publish Docker Preview Images
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.3.4
|
|
- name: Get the version
|
|
id: get_version
|
|
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1.2.0
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1.3.0
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@v1.9.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
- name: Log in to GitHub Container Registry
|
|
uses: docker/login-action@v1.9.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v2.5.0
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
platforms: linux/amd64
|
|
push: true
|
|
build-args: |
|
|
COMMIT_TAG=${{ github.sha }}
|
|
tags: |
|
|
sctx/overseerr:${{ steps.get_version.outputs.VERSION }}
|
|
ghcr.io/sct/overseerr:${{ steps.get_version.outputs.VERSION }}
|