bump VaultVulp/gp-docker-action to 1.6.0

- bump VaultVulp/gp-docker-action to 1.6.0
- build also latest tag for 26.x
This commit is contained in:
Jarno Rankinen 2023-05-25 20:44:30 +03:00 committed by GitHub
parent 516d1fec7b
commit 943426c00e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -6,6 +6,8 @@ name: Automatic Build
on: on:
# Triggers the workflow on push or pull request events but only for the "master" branch # Triggers the workflow on push or pull request events but only for the "master" branch
push: push:
tags:
- "26*"
# branches: [ "master" ] # branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab # Allows you to run this workflow manually from the Actions tab
@ -23,11 +25,13 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Build and Publish Tag Docker image - name: Build and Publish Tag Docker image
uses: VaultVulp/gp-docker-action@1.2.0 uses: VaultVulp/gp-docker-action@1.6.0
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }} # Provide GITHUB_TOKEN to login into the GitHub Packages github-token: ${{ secrets.GITHUB_TOKEN }} # Provide GITHUB_TOKEN to login into the GitHub Packages
image-name: nextcloud # Provide only Docker image name image-name: nextcloud # Provide only Docker image name
extract-git-tag: true # Provide flag to extract Docker image tag from git reference extract-git-tag: true # Provide flag to extract Docker image tag from git reference
additional-image-tags: latest
custom-args: --platform=linux/arm64,linux/amd64 # specify target architectures via the
# # Steps represent a sequence of tasks that will be executed as part of the job # # Steps represent a sequence of tasks that will be executed as part of the job
# steps: # steps: