Fix uses url to add https for actions on github
This commit is contained in:
parent
8d2662d0dc
commit
2bc13453f4
|
@ -15,7 +15,7 @@ jobs:
|
|||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version-file: go.mod
|
||||
- uses: github.com/goreleaser/goreleaser-action@v2
|
||||
- uses: https://github.com/goreleaser/goreleaser-action@v2
|
||||
with:
|
||||
version: latest
|
||||
args: release --snapshot --clean
|
||||
|
@ -37,17 +37,17 @@ jobs:
|
|||
type=pep440,pattern={{version}}
|
||||
type=sha
|
||||
- name: Setup QEMU
|
||||
uses: github.com/docker/setup-qemu-action@v2
|
||||
uses: https://github.com/docker/setup-qemu-action@v2
|
||||
- name: Setup Docker Buildx
|
||||
uses: github.com/docker/setup-buildx-action@v2
|
||||
uses: https://github.com/docker/setup-buildx-action@v2
|
||||
- name: Login to Docker Registry
|
||||
uses: github.com/docker/login-action@v2
|
||||
uses: https://github.com/docker/login-action@v2
|
||||
with:
|
||||
registry: git.fifitido.net
|
||||
username: ${{ gitea.repository_owner }}
|
||||
password: ${{ secrets.GITEA_TOKEN }}
|
||||
- name: Build and push
|
||||
uses: github.com/docker/build-push-action@v4
|
||||
uses: https://github.com/docker/build-push-action@v4
|
||||
with:
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
|
|
Loading…
Reference in New Issue