mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
update secrets names
This commit is contained in:
parent
7e9119c28b
commit
4c3c6154f6
1 changed files with 4 additions and 4 deletions
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
|
@ -12,8 +12,8 @@ jobs:
|
|||
name: Docker Login
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ secrets.DockerUsername }}
|
||||
password: ${{ secrets.DockerPassword }}
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -51,8 +51,8 @@ jobs:
|
|||
builder: ${{ steps.buildx.outputs.name }}
|
||||
push: true
|
||||
tags: |
|
||||
${{ secrets.DockerUsername }}/${{ secrets.DockerRepository }}:latest
|
||||
${{ secrets.DockerUsername }}/${{ secrets.DockerRepository }}:${{ github.sha }}
|
||||
${{ secrets.DOCKER_USERNAME }}/archivebox:latest
|
||||
${{ secrets.DOCKER_USERNAME }}/archivebox:${{ github.sha }}
|
||||
cache-from: type=local,src=/tmp/.buildx-cache
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache
|
||||
platforms: linux/arm64,linux/arm/v7
|
||||
|
|
Loading…
Reference in a new issue