mirror of
https://github.com/sct/overseerr.git
synced 2025-12-27 16:46:29 +01:00
225 lines
7.2 KiB
YAML
225 lines
7.2 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: Seerr Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: release-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
semantic-release:
|
|
name: Tag and release latest version
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
HUSKY: 0
|
|
outputs:
|
|
new_release_published: ${{ steps.release.outputs.new_release_published }}
|
|
new_release_version: ${{ steps.release.outputs.new_release_version }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
|
|
with:
|
|
node-version-file: package.json
|
|
package-manager-cache: false
|
|
|
|
- name: Pnpm Setup
|
|
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
|
|
|
|
- name: Get pnpm store directory
|
|
shell: sh
|
|
run: |
|
|
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
|
|
- name: Setup pnpm cache
|
|
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
|
with:
|
|
path: ${{ env.STORE_PATH }}
|
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pnpm-store-
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Release
|
|
id: release
|
|
uses: cycjimmy/semantic-release-action@9cc899c47e6841430bbaedb43de1560a568dfd16 # v5.0.0
|
|
with:
|
|
extra_plugins: |
|
|
@semantic-release/git@10
|
|
@semantic-release/changelog@6
|
|
@codedependant/semantic-release-docker@5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
|
|
build:
|
|
name: Build (per-arch, native runners)
|
|
needs: semantic-release
|
|
if: needs.semantic-release.outputs.new_release_published == 'true'
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- runner: ubuntu-24.04
|
|
platform: linux/amd64
|
|
arch: amd64
|
|
- runner: ubuntu-24.04-arm
|
|
platform: linux/arm64
|
|
arch: arm64
|
|
runs-on: ${{ matrix.runner }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Commit timestamp
|
|
id: ts
|
|
run: echo "TIMESTAMP=$(git log -1 --pretty=%ct)" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
|
|
|
|
- name: Warm cache (no push) — ${{ matrix.platform }}
|
|
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
platforms: ${{ matrix.platform }}
|
|
push: false
|
|
build-args: |
|
|
COMMIT_TAG=${{ github.sha }}
|
|
BUILD_VERSION=${{ needs.semantic-release.outputs.new_release_version }}
|
|
SOURCE_DATE_EPOCH=${{ steps.ts.outputs.TIMESTAMP }}
|
|
cache-from: type=gha,scope=${{ matrix.platform }}
|
|
cache-to: type=gha,mode=max,scope=${{ matrix.platform }}
|
|
provenance: false
|
|
|
|
publish:
|
|
name: Publish multi-arch image
|
|
needs: [semantic-release, build]
|
|
if: needs.semantic-release.outputs.new_release_published == 'true'
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
packages: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Commit timestamp
|
|
id: ts
|
|
run: echo "TIMESTAMP=$(git log -1 --pretty=%ct)" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
|
|
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Log in to GitHub Container Registry
|
|
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# build-snap:
|
|
# name: Build Snap Package (${{ matrix.architecture }})
|
|
# needs: semantic-release
|
|
# runs-on: ubuntu-22.04
|
|
# strategy:
|
|
# fail-fast: false
|
|
# matrix:
|
|
# architecture:
|
|
# - amd64
|
|
# - arm64
|
|
# - armhf
|
|
# steps:
|
|
# - name: Checkout Code
|
|
# uses: actions/checkout@v3
|
|
# with:
|
|
# fetch-depth: 0
|
|
# - name: Switch to master branch
|
|
# run: git checkout master
|
|
# - name: Pull latest changes
|
|
# run: git pull
|
|
# - name: Prepare
|
|
# id: prepare
|
|
# run: |
|
|
# git fetch --prune --tags
|
|
# if [[ $GITHUB_REF == refs/tags/* || $GITHUB_REF == refs/heads/master ]]; then
|
|
# echo "RELEASE=stable" >> $GITHUB_OUTPUT
|
|
# else
|
|
# echo "RELEASE=edge" >> $GITHUB_OUTPUT
|
|
# fi
|
|
# - name: Set Up QEMU
|
|
# uses: docker/setup-qemu-action@v2
|
|
# with:
|
|
# image: tonistiigi/binfmt@sha256:df15403e06a03c2f461c1f7938b171fda34a5849eb63a70e2a2109ed5a778bde
|
|
# - name: Build Snap Package
|
|
# uses: diddlesnaps/snapcraft-multiarch-action@v1
|
|
# id: build
|
|
# with:
|
|
# architecture: ${{ matrix.architecture }}
|
|
# - name: Upload Snap Package
|
|
# uses: actions/upload-artifact@v3
|
|
# with:
|
|
# name: overseerr-snap-package-${{ matrix.architecture }}
|
|
# path: ${{ steps.build.outputs.snap }}
|
|
# - name: Review Snap Package
|
|
# uses: diddlesnaps/snapcraft-review-tools-action@v1
|
|
# with:
|
|
# snap: ${{ steps.build.outputs.snap }}
|
|
# - name: Publish Snap Package
|
|
# uses: snapcore/action-publish@v1
|
|
# env:
|
|
# SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAP_LOGIN }}
|
|
# with:
|
|
# snap: ${{ steps.build.outputs.snap }}
|
|
# release: ${{ steps.prepare.outputs.RELEASE }}
|
|
|
|
discord:
|
|
name: Send Discord Notification
|
|
needs: publish
|
|
if: always()
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Get Build Job Status
|
|
uses: technote-space/workflow-conclusion-action@45ce8e0eb155657ab8ccf346ade734257fd196a5 # v3.0.3
|
|
|
|
- name: Combine Job Status
|
|
id: status
|
|
run: |
|
|
failures=(neutral, skipped, timed_out, action_required)
|
|
if [[ ${array[@]} =~ $WORKFLOW_CONCLUSION ]]; then
|
|
echo "status=failure" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "status=$WORKFLOW_CONCLUSION" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Post Status to Discord
|
|
uses: sarisia/actions-status-discord@58667542682a27f270460405363e3a982f57a7ee # v1.0.0
|
|
with:
|
|
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
|
status: ${{ steps.status.outputs.status }}
|
|
title: ${{ github.workflow }}
|
|
nofail: true
|