Browse Source
Feature/finalize GitHub action to create arm64 docker image (#1197)
* Change order and refactor secrets
* Update changelog
pull/1198/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
4 additions and
3 deletions
-
.github/workflows/docker-image.yml
-
CHANGELOG.md
-
prisma/schema.prisma
|
|
@ -34,8 +34,8 @@ jobs: |
|
|
|
if: github.event_name != 'pull_request' |
|
|
|
uses: docker/login-action@v2 |
|
|
|
with: |
|
|
|
username: ${{ secrets.DOCKER_USERNAME }} |
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }} |
|
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }} |
|
|
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} |
|
|
|
|
|
|
|
- name: Build and push |
|
|
|
uses: docker/build-push-action@v3 |
|
|
|
|
|
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Added the alias to the `Access` database schema |
|
|
|
- Added support for translated time distances |
|
|
|
- Added a _GitHub Action_ to create an `arm64` docker image |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
|
|
@ -1,7 +1,7 @@ |
|
|
|
generator client { |
|
|
|
provider = "prisma-client-js" |
|
|
|
previewFeatures = [] |
|
|
|
binaryTargets = ["linux-arm64-openssl-1.1.x", "debian-openssl-1.1.x", "native"] |
|
|
|
binaryTargets = ["debian-openssl-1.1.x", "linux-arm64-openssl-1.1.x", "native"] |
|
|
|
} |
|
|
|
|
|
|
|
datasource db { |
|
|
|