You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.1 KiB
75 lines
2.1 KiB
# This is a basic workflow to help you get started with Actions |
|
|
|
name: aliyundriver-Build |
|
|
|
# Controls when the action will run. |
|
on: |
|
# Triggers the workflow on push or pull request events but only for the main branch |
|
push: |
|
branches: [ main ] |
|
pull_request: |
|
branches: [ main ] |
|
# schedule: |
|
# - cron: "0 0 * * */3" |
|
|
|
# Allows you to run this workflow manually from the Actions tab |
|
workflow_dispatch: |
|
inputs: |
|
logLevel: |
|
description: 'Log level' |
|
required: true |
|
default: 'warning' |
|
tags: |
|
description: 'Test scenario tags' |
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel |
|
jobs: |
|
buildx: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- |
|
name: Checkout |
|
uses: actions/checkout@v2 |
|
- |
|
name: Get current date |
|
id: date |
|
run: echo "::set-output name=today::$(date +'%Y-%m-%d')" |
|
- |
|
name: Set up QEMU |
|
uses: docker/setup-qemu-action@v1 |
|
with: |
|
platforms: all |
|
- |
|
name: Set up Docker Buildx |
|
id: buildx |
|
uses: docker/setup-buildx-action@v1 |
|
- |
|
name: Available platforms |
|
run: echo ${{ steps.buildx.outputs.platforms }} |
|
- |
|
name: Cache Docker layers |
|
uses: actions/cache@v2 |
|
with: |
|
path: /tmp/.buildx-cache |
|
key: ${{ runner.os }}-buildx-${{ github.sha }} |
|
restore-keys: | |
|
${{ runner.os }}-buildx- |
|
- |
|
name: Login to DockerHub |
|
uses: docker/login-action@v1 |
|
with: |
|
username: ${{ secrets.DOCKERHUB_USERNAME }} |
|
password: ${{ secrets.DOCKERHUB_TOKEN }} |
|
- |
|
name: Build and push |
|
uses: docker/build-push-action@v2 |
|
with: |
|
context: . |
|
file: ./Dockerfile |
|
platforms: linux/amd64,linux/arm64 |
|
push: ${{ github.event_name != 'pull_request' }} |
|
cache-from: type=local,src=/tmp/.buildx-cache |
|
cache-to: type=local,dest=/tmp/.buildx-cache |
|
tags: | |
|
zx5253/webdav-aliyundriver:latest |
|
zx5253/webdav-aliyundriver:${{ steps.date.outputs.today }}
|
|
|