2021-01-16 21:18:22 +00:00
|
|
|
name: Build and release container
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- "master"
|
2021-09-01 11:28:20 +00:00
|
|
|
paths-ignore:
|
|
|
|
- "*.md"
|
|
|
|
- LICENCE
|
|
|
|
- TRANSLATION
|
|
|
|
- invidious.service
|
|
|
|
- .git*
|
|
|
|
- .editorconfig
|
2021-01-16 21:18:22 +00:00
|
|
|
|
2021-09-01 11:28:20 +00:00
|
|
|
- screenshots/*
|
|
|
|
- .github/ISSUE_TEMPLATE/*
|
|
|
|
- kubernetes/**
|
2022-06-05 20:05:19 +00:00
|
|
|
|
2021-01-16 21:18:22 +00:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-06-05 20:05:19 +00:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2021-10-02 16:10:07 +00:00
|
|
|
- name: Install Crystal
|
2022-06-05 20:05:19 +00:00
|
|
|
uses: crystal-lang/install-crystal@v1.6.0
|
2021-10-02 16:10:07 +00:00
|
|
|
with:
|
2022-08-06 13:12:45 +00:00
|
|
|
crystal: 1.5.0
|
2022-06-05 20:05:19 +00:00
|
|
|
|
2021-10-02 16:00:43 +00:00
|
|
|
- name: Run lint
|
|
|
|
run: |
|
|
|
|
if ! crystal tool format --check; then
|
|
|
|
crystal tool format
|
|
|
|
git diff
|
|
|
|
exit 1
|
|
|
|
fi
|
2021-01-16 21:18:22 +00:00
|
|
|
|
|
|
|
- name: Set up QEMU
|
2022-06-05 20:05:19 +00:00
|
|
|
uses: docker/setup-qemu-action@v2
|
2021-07-15 21:57:20 +00:00
|
|
|
with:
|
|
|
|
platforms: arm64
|
2021-01-16 21:18:22 +00:00
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
2022-06-05 20:05:19 +00:00
|
|
|
uses: docker/setup-buildx-action@v2
|
2021-01-16 21:18:22 +00:00
|
|
|
|
|
|
|
- name: Login to registry
|
2022-06-05 20:05:19 +00:00
|
|
|
uses: docker/login-action@v2
|
2021-01-16 21:18:22 +00:00
|
|
|
with:
|
|
|
|
registry: quay.io
|
|
|
|
username: ${{ secrets.QUAY_USERNAME }}
|
|
|
|
password: ${{ secrets.QUAY_PASSWORD }}
|
|
|
|
|
2021-07-15 21:57:20 +00:00
|
|
|
- name: Build and push Docker AMD64 image for Push Event
|
2021-01-21 22:51:54 +00:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2022-06-05 20:05:19 +00:00
|
|
|
uses: docker/build-push-action@v3
|
2021-01-16 21:18:22 +00:00
|
|
|
with:
|
2021-01-21 06:45:43 +00:00
|
|
|
context: .
|
|
|
|
file: docker/Dockerfile
|
2021-07-15 21:57:20 +00:00
|
|
|
platforms: linux/amd64
|
2021-01-22 03:50:17 +00:00
|
|
|
labels: quay.expires-after=12w
|
2021-01-16 21:18:22 +00:00
|
|
|
push: true
|
2021-01-22 03:50:17 +00:00
|
|
|
tags: quay.io/invidious/invidious:${{ github.sha }},quay.io/invidious/invidious:latest
|
2021-09-01 11:24:17 +00:00
|
|
|
build-args: release=1
|
2021-07-15 21:57:20 +00:00
|
|
|
|
|
|
|
- name: Build and push Docker ARM64 image for Push Event
|
|
|
|
if: github.ref == 'refs/heads/master'
|
2022-06-05 20:05:19 +00:00
|
|
|
uses: docker/build-push-action@v3
|
2021-07-15 21:57:20 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: docker/Dockerfile.arm64
|
|
|
|
platforms: linux/arm64/v8
|
|
|
|
labels: quay.expires-after=12w
|
|
|
|
push: true
|
2021-09-01 11:24:17 +00:00
|
|
|
tags: quay.io/invidious/invidious:${{ github.sha }}-arm64,quay.io/invidious/invidious:latest-arm64
|
2021-10-02 16:00:43 +00:00
|
|
|
build-args: release=1
|