Update release_unstable.yml
This commit is contained in:
parent
989eb17925
commit
d87da30ff4
1 changed files with 7 additions and 1 deletions
8
.github/workflows/release_unstable.yml
vendored
8
.github/workflows/release_unstable.yml
vendored
|
@ -39,6 +39,12 @@ jobs:
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: set lower case owner name
|
||||||
|
run: |
|
||||||
|
echo "GITHUB_REPOSITORY=${REPO,,}" >>${GITHUB_ENV}
|
||||||
|
env:
|
||||||
|
REPO: '${{ github.repository }}'
|
||||||
|
|
||||||
- name: Build and push image
|
- name: Build and push image
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
|
@ -47,7 +53,7 @@ jobs:
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:dev
|
${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:dev
|
||||||
ghcr.io/${{ github.repository }}:dev
|
ghcr.io/${{ env.GITHUB_REPOSITORY }}:dev
|
||||||
build-args: CANAL=${{ env.DOTCLEAR_CANAL }}
|
build-args: CANAL=${{ env.DOTCLEAR_CANAL }}
|
||||||
platforms: linux/386,linux/amd64,linux/arm/V6
|
platforms: linux/386,linux/amd64,linux/arm/V6
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue