2024-06-25 00:06:11 +05:30
|
|
|
name: Build and release container directly from master
|
2021-01-17 02:48:22 +05:30
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
2021-09-01 16:58:20 +05:30
|
|
|
paths-ignore:
|
|
|
|
- "*.md"
|
|
|
|
- LICENCE
|
|
|
|
- TRANSLATION
|
|
|
|
- invidious.service
|
|
|
|
- .git*
|
|
|
|
- .editorconfig
|
|
|
|
- screenshots/*
|
|
|
|
- .github/ISSUE_TEMPLATE/*
|
|
|
|
- kubernetes/**
|
2022-06-06 01:35:19 +05:30
|
|
|
|
2021-01-17 02:48:22 +05:30
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-12-01 23:41:45 +05:30
|
|
|
uses: actions/checkout@v4
|
2022-06-06 01:35:19 +05:30
|
|
|
|
2021-10-02 21:40:07 +05:30
|
|
|
- name: Install Crystal
|
2024-07-04 22:41:36 +05:30
|
|
|
uses: crystal-lang/install-crystal@v1.8.2
|
2021-10-02 21:40:07 +05:30
|
|
|
with:
|
2024-07-04 22:41:36 +05:30
|
|
|
crystal: 1.12.2
|
2022-06-06 01:35:19 +05:30
|
|
|
|
2021-10-02 21:30:43 +05:30
|
|
|
- name: Run lint
|
|
|
|
run: |
|
|
|
|
if ! crystal tool format --check; then
|
|
|
|
crystal tool format
|
|
|
|
git diff
|
|
|
|
exit 1
|
|
|
|
fi
|
2021-01-17 02:48:22 +05:30
|
|
|
|
|
|
|
- name: Set up QEMU
|
2023-12-01 23:41:45 +05:30
|
|
|
uses: docker/setup-qemu-action@v3
|
2021-07-16 03:27:20 +05:30
|
|
|
with:
|
|
|
|
platforms: arm64
|
2021-01-17 02:48:22 +05:30
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2023-12-01 23:41:45 +05:30
|
|
|
uses: docker/setup-buildx-action@v3
|
2021-01-17 02:48:22 +05:30
|
|
|
|
|
|
|
- name: Login to registry
|
2023-12-01 23:41:45 +05:30
|
|
|
uses: docker/login-action@v3
|
2021-01-17 02:48:22 +05:30
|
|
|
with:
|
|
|
|
registry: quay.io
|
|
|
|
username: ${{ secrets.QUAY_USERNAME }}
|
|
|
|
password: ${{ secrets.QUAY_PASSWORD }}
|
|
|
|
|
2023-12-06 16:49:21 +05:30
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
with:
|
|
|
|
images: quay.io/invidious/invidious
|
|
|
|
tags: |
|
|
|
|
type=sha,format=short,prefix={{date 'YYYY.MM.DD'}}-,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
|
2024-06-25 00:04:55 +05:30
|
|
|
type=raw,value=master,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
|
2023-12-06 16:49:21 +05:30
|
|
|
labels: |
|
|
|
|
quay.expires-after=12w
|
|
|
|
|
2023-07-26 19:55:19 +05:30
|
|
|
- name: Build and push Docker AMD64 image for Push Event
|
2023-12-01 23:41:45 +05:30
|
|
|
uses: docker/build-push-action@v5
|
2021-01-17 02:48:22 +05:30
|
|
|
with:
|
2021-01-21 12:15:43 +05:30
|
|
|
context: .
|
|
|
|
file: docker/Dockerfile
|
2021-07-16 03:27:20 +05:30
|
|
|
platforms: linux/amd64
|
2023-12-06 16:49:21 +05:30
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2021-01-17 02:48:22 +05:30
|
|
|
push: true
|
2023-12-06 16:49:21 +05:30
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
2022-11-01 23:04:26 +05:30
|
|
|
build-args: |
|
|
|
|
"release=1"
|
2021-07-16 03:27:20 +05:30
|
|
|
|
2023-12-06 16:49:21 +05:30
|
|
|
- name: Docker meta
|
|
|
|
id: meta-arm64
|
|
|
|
uses: docker/metadata-action@v5
|
|
|
|
with:
|
|
|
|
images: quay.io/invidious/invidious
|
|
|
|
flavor: |
|
|
|
|
suffix=-arm64
|
|
|
|
tags: |
|
|
|
|
type=sha,format=short,prefix={{date 'YYYY.MM.DD'}}-,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
|
2024-06-25 00:04:55 +05:30
|
|
|
type=raw,value=master,enable=${{ github.ref == format('refs/heads/{0}', 'master') }}
|
2023-12-06 16:49:21 +05:30
|
|
|
labels: |
|
|
|
|
quay.expires-after=12w
|
|
|
|
|
2023-07-26 19:55:19 +05:30
|
|
|
- name: Build and push Docker ARM64 image for Push Event
|
2023-12-01 23:41:45 +05:30
|
|
|
uses: docker/build-push-action@v5
|
2021-07-16 03:27:20 +05:30
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: docker/Dockerfile.arm64
|
|
|
|
platforms: linux/arm64/v8
|
2023-12-06 16:49:21 +05:30
|
|
|
labels: ${{ steps.meta-arm64.outputs.labels }}
|
2021-07-16 03:27:20 +05:30
|
|
|
push: true
|
2023-12-06 16:49:21 +05:30
|
|
|
tags: ${{ steps.meta-arm64.outputs.tags }}
|
2022-11-01 23:04:26 +05:30
|
|
|
build-args: |
|
|
|
|
"release=1"
|