Update .github/workflows/main.yml
Some checks failed
ci / docker (push) Has been cancelled

This commit is contained in:
Sami 2025-02-20 23:53:10 +00:00
parent b8ebac042b
commit 913a366982

View File

@ -6,44 +6,45 @@ on:
- "**" - "**"
tags: tags:
- "v*.*.*" - "v*.*.*"
workflow_dispatch:
jobs: jobs:
docker: docker:
runs-on: linux runs-on: linux
container:
image: node:23-alpine
volumes:
- /opt/.runner/node_modules:/cache
steps: steps:
- uses: https://github.com/actions/checkout@v4 - name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
${{ secrets.DOCKERHUB_USERNAME }}/brudi-rclone
# generate Docker tags based on the following events/attributes
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
# - name: Checkout - name: Login to Docker Hub
# uses: actions/checkout@v4 if: github.event_name != 'pull_request'
# - name: Docker meta uses: docker/login-action@v3
# id: meta with:
# uses: docker/metadata-action@v5 username: ${{ secrets.DOCKERHUB_USERNAME }}
# with: password: ${{ secrets.DOCKERHUB_TOKEN }}
# # list of Docker images to use as base name for tags - name: Set up QEMU
# images: | uses: docker/setup-qemu-action@v3
# ${{ secrets.DOCKERHUB_USERNAME }}/brudi-rclone - name: Build and push
# # generate Docker tags based on the following events/attributes uses: docker/build-push-action@v5
# tags: | with:
# type=raw,value=latest,enable={{is_default_branch}} context: .
# type=semver,pattern={{version}} platforms: linux/amd64,linux/arm64
# type=semver,pattern={{major}}.{{minor}} push: ${{ github.event_name != 'pull_request' }}
# type=semver,pattern={{major}} tags: ${{ steps.meta.outputs.tags }}
# - name: Set up Docker Buildx labels: ${{ steps.meta.outputs.labels }}
# uses: docker/setup-buildx-action@v3
# - name: Login to Docker Hub
# if: github.event_name != 'pull_request'
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# - name: Build and push
# uses: docker/build-push-action@v5
# with:
# context: .
# platforms: linux/amd64,linux/arm64
# push: ${{ github.event_name != 'pull_request' }}
# tags: ${{ steps.meta.outputs.tags }}
# labels: ${{ steps.meta.outputs.labels }}