All checks were successful
push new builds to gitea, dockerhub / build (push) Successful in 1m26s
73 lines
2.4 KiB
YAML
73 lines
2.4 KiB
YAML
name: push new builds to gitea, dockerhub
|
|
|
|
on:
|
|
push:
|
|
branches: ["master"]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Get youdis version
|
|
id: youdis
|
|
run: |
|
|
YOUDIS_VER=$(cat youdis-version.txt)
|
|
if [ -z "$YOUDIS_VER" ]; then
|
|
echo "youdis version empty" >&2
|
|
exit 1
|
|
fi
|
|
echo "youdis-version=$YOUDIS_VER" >> $GITHUB_OUTPUT
|
|
echo "shortsha=${GITHUB_SHA::5}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Decide if build needed
|
|
id: check_build
|
|
run: |
|
|
SHOULD_BUILD=false
|
|
if [ "${{ steps.youdis.outputs.youdis-version }}" != "$(docker inspect --format='{{ index .Config.Labels "YOUDIS_VERSION" }}' eulaly/youdis:latest || echo none)" ]; then
|
|
SHOULD_BUILD=true
|
|
fi
|
|
echo "should_build=$SHOULD_BUILD" >> $GITHUB_OUTPUT
|
|
|
|
- name: Login to Dockerhub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Build and push to Dockerhub
|
|
if: ${{ steps.check_build.outputs.should_build == 'true' }}
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
push: true
|
|
tags: |
|
|
eulaly/youdis:latest
|
|
eulaly/youdis:${{ steps.youdis.outputs.shortsha }}
|
|
labels: |
|
|
YOUDIS_VERSION=${{ steps.youdis.outputs.youdis-version }}
|
|
|
|
- name: Login to Gitea
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: git.hgsky.me
|
|
username: ${{ secrets.USERNAME }}
|
|
password: ${{ secrets.YOUDIS_PASSWORD }}
|
|
|
|
- name: Build and push to Gitea
|
|
if: ${{ steps.check_build.outputs.should_build == 'true' }}
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
push: true
|
|
tags: |
|
|
git.hgsky.me/ben/youdis:latest
|
|
git.hgsky.me/ben/youdis:${{ steps.youdis.outputs.shortsha }}
|
|
labels: |
|
|
YOUDIS_VERSION=${{ steps.youdis.outputs.youdis-version }}
|
|
|
|
- name: link container in gitea
|
|
run: |
|
|
curl -X POST -H "Authorization: token ${{ secrets.SUPER }}" https://git.hgsky.me/api/v1/packages/ben/container/youdis/-/link/youdis
|
|
|