changes
This commit is contained in:
parent
854ed4c953
commit
72ede19dda
1 changed files with 7 additions and 4 deletions
|
@ -6,7 +6,6 @@ on:
|
|||
- main
|
||||
|
||||
jobs:
|
||||
|
||||
release_tag:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
@ -14,7 +13,9 @@ jobs:
|
|||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install jq
|
||||
run: apt-get update && apt-get upgrade && apt-get install -y jq
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y jq
|
||||
|
||||
- name: Get latest release and create new release
|
||||
shell: bash
|
||||
|
@ -52,11 +53,13 @@ jobs:
|
|||
username: ${{ secrets.DOCKER_USER }}
|
||||
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
#- name: Set up QEMU
|
||||
# uses: docker/setup-qemu-action@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
with:
|
||||
endpoint: tcp://forgejo-docker-in-docker-1:2375
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v5
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue