mirror of
https://github.com/ManiMatter/decluttarr.git
synced 2026-04-18 06:54:01 +02:00
Meaning that arm + x86 compatibilty is now removed (happy for somebody to look into dev.yml + main.yml and propose a fix)
80 lines
2.5 KiB
YAML
80 lines
2.5 KiB
YAML
name: Main Deployment
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- closed
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-main:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: '.'
|
|
steps:
|
|
- name: 'Checkout GitHub Action'
|
|
uses: actions/checkout@main
|
|
|
|
# - name: Set up QEMU
|
|
# uses: docker/setup-qemu-action@v1
|
|
|
|
# - name: Set up Docker Buildx
|
|
# uses: docker/setup-buildx-action@v1
|
|
|
|
- name: 'Login to GitHub Container Registry'
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{github.actor}}
|
|
password: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: '0'
|
|
|
|
- name: Bump version and push tag
|
|
uses: anothrNick/github-tag-action@1.36.0
|
|
id: setversion
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
WITH_V: true
|
|
|
|
- name: Store short Commit ID in env variable
|
|
id: vars
|
|
run: |
|
|
calculatedSha=$(git rev-parse --short ${{ github.sha }})
|
|
echo "SHORT_COMMIT_ID=$calculatedSha" >> $GITHUB_ENV
|
|
|
|
- name: "Build, Tag, and push the Docker image"
|
|
env:
|
|
IMAGE_NAME: ghcr.io/manimatter/decluttarr
|
|
IMAGE_TAG: ${{ steps.setversion.outputs.new_tag }}
|
|
run: |
|
|
docker build \
|
|
-t $IMAGE_NAME:$IMAGE_TAG \
|
|
-t $IMAGE_NAME:latest \
|
|
--label com.decluttarr.version=$IMAGE_TAG \
|
|
--label com.decluttarr.commit=$SHORT_COMMIT_ID \
|
|
--build-arg IMAGE_TAG=$IMAGE_TAG \
|
|
--build-arg SHORT_COMMIT_ID=$SHORT_COMMIT_ID \
|
|
-f docker/Dockerfile \
|
|
--push .
|
|
|
|
# - name: "Build, Tag, and push the Docker image"
|
|
# env:
|
|
# IMAGE_NAME: ghcr.io/manimatter/decluttarr
|
|
# IMAGE_TAG: ${{ steps.setversion.outputs.new_tag }}
|
|
# run: |
|
|
# docker buildx build \ <<<<<<<<<<<<<<<<<<<<< creates manifest issues... don't know how to solve that
|
|
# --platform linux/amd64,linux/arm64 \ <<<<<<<<<<<<<<<<<<<<< creates manifest issues... don't know how to solve that
|
|
# -t $IMAGE_NAME:$IMAGE_TAG \
|
|
# -t $IMAGE_NAME:latest \
|
|
# --label com.decluttarr.version=$IMAGE_TAG \
|
|
# --label com.decluttarr.commit=$SHORT_COMMIT_ID \
|
|
# --build-arg IMAGE_TAG=$IMAGE_TAG \
|
|
# --build-arg SHORT_COMMIT_ID=$SHORT_COMMIT_ID \
|
|
# -f docker/Dockerfile \
|
|
# --push . |