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
|
- uses: actions/setup-go@v3
|
||||||
with:
|
with:
|
||||||
go-version-file: go.mod
|
go-version-file: go.mod
|
||||||
- uses: github.com/goreleaser/goreleaser-action@v2
|
- uses: https://github.com/goreleaser/goreleaser-action@v2
|
||||||
with:
|
with:
|
||||||
version: latest
|
version: latest
|
||||||
args: release --snapshot --clean
|
args: release --snapshot --clean
|
||||||
|
@ -37,17 +37,17 @@ jobs:
|
||||||
type=pep440,pattern={{version}}
|
type=pep440,pattern={{version}}
|
||||||
type=sha
|
type=sha
|
||||||
- name: Setup QEMU
|
- name: Setup QEMU
|
||||||
uses: github.com/docker/setup-qemu-action@v2
|
uses: https://github.com/docker/setup-qemu-action@v2
|
||||||
- name: Setup Docker Buildx
|
- 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
|
- name: Login to Docker Registry
|
||||||
uses: github.com/docker/login-action@v2
|
uses: https://github.com/docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: git.fifitido.net
|
registry: git.fifitido.net
|
||||||
username: ${{ gitea.repository_owner }}
|
username: ${{ gitea.repository_owner }}
|
||||||
password: ${{ secrets.GITEA_TOKEN }}
|
password: ${{ secrets.GITEA_TOKEN }}
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: github.com/docker/build-push-action@v4
|
uses: https://github.com/docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
|
Loading…
Reference in New Issue