fix: torrent name parsing fail in multi_version_filter #79
Workflow file for this run
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: Build Docker | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
if [ -f backend/requirements.lock ]; then pip install -r backend/requirements.lock; fi | |
pip install pytest | |
- name: Test | |
working-directory: ./backend/src | |
run: | | |
mkdir -p config | |
pytest | |
webui-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: cd webui && pnpm install | |
- name: Build test | |
run: | | |
cd webui && pnpm test:build | |
version-info: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get latest tag | |
id: get-latest-tag | |
uses: actions-ecosystem/action-get-latest-tag@v1 | |
- name: Set version | |
id: version | |
run: | | |
if [ -z "${{ steps.get-latest-tag.outputs.tag }}" ]; then | |
echo "No tags found. Exiting." | |
exit 1 | |
else | |
echo "Tag found: ${{ steps.get-latest-tag.outputs.tag }}" | |
echo "version=${{ steps.get-latest-tag.outputs.tag }}" >> $GITHUB_OUTPUT | |
fi | |
outputs: | |
version: ${{ steps.version.outputs.version }} | |
build-webui: | |
runs-on: ubuntu-latest | |
needs: [test, webui-test, version-info] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v4 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: cd webui && pnpm install | |
- name: Build | |
run: | | |
cd webui && pnpm build | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: webui/dist | |
build-docker: | |
runs-on: ubuntu-latest | |
needs: [build-webui, version-info] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Create Version info via tag | |
working-directory: ./backend/src | |
run: | | |
echo "VERSION='${{ needs.version-info.outputs.version }}'" >> module/__version__.py | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Docker metadata (dev) | |
id: meta-dev | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
ghcr.io/${{ github.repository }} | |
tags: | | |
type=raw,value=${{ needs.version-info.outputs.version }} | |
type=raw,value=dev | |
if: contains(needs.version-info.outputs.version, 'dev') | |
- name: Docker metadata (release) | |
id: meta-release | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
ghcr.io/${{ github.repository }} | |
tags: | | |
type=raw,value=${{ needs.version-info.outputs.version }} | |
type=raw,value=latest | |
if: contains(needs.version-info.outputs.version, 'dev') == false | |
- name: Login to ghcr.io | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
path: backend/src/dist | |
- name: Build and push (dev) | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
builder: ${{ steps.buildx.output.name }} | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.meta-dev.outputs.tags }} | |
labels: ${{ steps.meta-dev.outputs.labels }} | |
cache-from: type=gha, scope=${{ github.workflow }} | |
cache-to: type=gha, scope=${{ github.workflow }} | |
if: contains(needs.version-info.outputs.version, 'dev') | |
- name: Build and push (release) | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
builder: ${{ steps.buildx.output.name }} | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.meta-release.outputs.tags }} | |
labels: ${{ steps.meta-release.outputs.labels }} | |
cache-from: type=gha, scope=${{ github.workflow }} | |
cache-to: type=gha, scope=${{ github.workflow }} | |
if: contains(needs.version-info.outputs.version, 'dev') == false |