We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 998748e + 83a5ba7 commit e4e5f99Copy full SHA for e4e5f99
โ.github/workflows/deploy.ymlโ
@@ -36,6 +36,9 @@ jobs:
36
- name: build server
37
run: ./gradlew build -x test -DSENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
38
39
+ - name: move jar file to deploy api
40
+ run: mv ./build/libs/*.jar ./deploy/api/
41
+
42
- name: docker arm64 build set up - qemu
43
uses: docker/setup-qemu-action@v2
44
โdeploy/api/Dockerfileโ
@@ -9,7 +9,7 @@ ARG REDIS_PORT
9
ARG INTERNAL_SECRET
10
ARG SLACK_TOKEN
11
12
-ARG JAR_FILE=./build/libs/*.jar
+ARG JAR_FILE=./*.jar
13
COPY ${JAR_FILE} gitanimals-render.jar
14
15
ENV db_url=${DB_URL} \
0 commit comments