Skip to content

Commit

Permalink
Merge pull request #248 from seatsurfing/fix-release-job
Browse files Browse the repository at this point in the history
Fix release job
  • Loading branch information
virtualzone authored Jul 1, 2024
2 parents 15d2d4e + 53877ce commit 20a3533
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ jobs:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
- name: Build and push booking ui
uses: docker/build-push-action@v5
with:
build-args: CI_VERSION=${{ env.CI_VERSION }}
context: ./booking-ui
context: ./
file: Dockerfile.booking-ui
platforms: linux/amd64,linux/arm64
push: true
tags: |
Expand All @@ -60,11 +61,12 @@ jobs:
docker.io/seatsurfing/booking-ui:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Build and push
- name: Build and push admin ui
uses: docker/build-push-action@v5
with:
build-args: CI_VERSION=${{ env.CI_VERSION }}
context: ./admin-ui
context: ./
file: Dockerfile.admin-ui
platforms: linux/amd64,linux/arm64
push: true
tags: |
Expand All @@ -74,7 +76,7 @@ jobs:
docker.io/seatsurfing/admin-ui:latest
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Build and push
- name: Build and push backend
uses: docker/build-push-action@v5
with:
context: .
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This repository contains the Backend, which consists of:
## Quick reference
* **Maintained by:** [Seatsurfing.app](https://seatsurfing.app/)
* **Where to get help:** [Documentation](https://seatsurfing.app/docs/)
* **Docker architectures:** [amd64, arm64, arm v7](http://hub.docker.com/r/seatsurfing/backend)
* **Docker architectures:** [amd64, arm64](http://hub.docker.com/r/seatsurfing/backend)
* **License:** [GPL 3.0](https://github.com/seatsurfing/backend/blob/master/LICENSE)

## How to use the Docker image
Expand Down
2 changes: 1 addition & 1 deletion docker-readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Seat booking server software which enables your organisation's employees to book
## Quick reference
* **Maintained by:** [Seatsurfing.app](https://seatsurfing.app/)
* **Where to get help:** [Documentation](https://seatsurfing.app/docs/)
* **Supported architectures:** amd64, arm64, arm v7
* **Supported architectures:** amd64, arm64
* **License:** [GPL 3.0](https://github.com/seatsurfing/backend/blob/master/LICENSE)

## Supported tags
Expand Down

0 comments on commit 20a3533

Please sign in to comment.