parent
0248346df2
commit
01f1d47f5d
88
.github/workflows/main.yml
vendored
88
.github/workflows/main.yml
vendored
@ -15,36 +15,62 @@ jobs:
|
|||||||
volumes:
|
volumes:
|
||||||
- /opt/.runner/node_modules:/cache
|
- /opt/.runner/node_modules:/cache
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Set up Docker Context for Buildx
|
||||||
uses: actions/checkout@v4
|
id: buildx-context
|
||||||
- name: Docker meta
|
run: |
|
||||||
id: meta
|
export DOCKER_HOST=tcp://docker:2376/
|
||||||
uses: docker/metadata-action@v5
|
export DOCKER_TLS_CERTDIR="/certs"
|
||||||
with:
|
export DOCKER_TLS_VERIFY=1
|
||||||
# list of Docker images to use as base name for tags
|
export DOCKER_CERT_PATH="/certs/client"
|
||||||
images: |
|
docker context create builders
|
||||||
${{ secrets.DOCKERHUB_USERNAME }}/brudi-rclone
|
# https://github.com/docker/setup-buildx-action
|
||||||
# generate Docker tags based on the following events/attributes
|
# https://docs.docker.com/engine/reference/commandline/cli/#environment-variables
|
||||||
tags: |
|
- name: Setup Docker Buildx
|
||||||
type=raw,value=latest,enable={{is_default_branch}}
|
id: buildx
|
||||||
type=semver,pattern={{version}}
|
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
|
||||||
type=semver,pattern={{major}}
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
- name: Login to Docker Hub
|
|
||||||
if: github.event_name != 'pull_request'
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
# buildkitd-flags: --debug
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
endpoint: builders
|
||||||
- name: Set up QEMU
|
env:
|
||||||
uses: docker/setup-qemu-action@v3
|
DOCKER_HOST: "tcp://docker:2376/"
|
||||||
- name: Build and push
|
DOCKER_TLS_CERTDIR: "/certs"
|
||||||
uses: docker/build-push-action@v5
|
DOCKER_TLS_VERIFY: 1
|
||||||
with:
|
DOCKER_CERT_PATH: "/certs/client"
|
||||||
context: .
|
#
|
||||||
platforms: linux/amd64,linux/arm64
|
# Debug
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
#
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
- name: Available platforms
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
run: echo ${{ steps.buildx.outputs.platforms }}
|
||||||
|
# - 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
|
||||||
|
# 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 }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user