mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-25 19:06:23 +03:00
1fe55314be
* [Core] Update GH Actions * fix dockerbuild * add empty lines at the end of files
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
name: Build Image on Commit and Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
tags:
|
|
- '20*'
|
|
|
|
env:
|
|
DOCKERHUB_SLUG: rssbridge/rss-bridge
|
|
GHCR_SLUG: ghcr.io/rss-bridge/rss-bridge
|
|
|
|
jobs:
|
|
bake:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v3
|
|
-
|
|
name: Docker meta
|
|
id: docker_meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: |
|
|
${{ env.DOCKERHUB_SLUG }}
|
|
${{ env.GHCR_SLUG }}
|
|
tags: |
|
|
type=raw,value=latest
|
|
type=sha
|
|
type=ref,event=tag,enable=${{ startsWith(github.ref, 'refs/tags/20') }}
|
|
type=raw,value=stable,enable=${{ startsWith(github.ref, 'refs/tags/20') }}
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
-
|
|
name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
-
|
|
name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
-
|
|
name: Build and push
|
|
uses: docker/bake-action@v2
|
|
with:
|
|
files: |
|
|
./docker-bake.hcl
|
|
${{ steps.docker_meta.outputs.bake-file }}
|
|
targets: image-all
|
|
push: true
|