Skip to content

Commit

Permalink
refactor(workflows): 🎉 update action workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Dec 11, 2023
1 parent ecd1651 commit 0f04bb2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
id: project_version
run: echo "::set-output name=version::$(node -e 'console.log(require("./package.json").version)')"

- name: test echo
run: echo ${{ environments.test.TESTIKO }}

- name: Build the Docker Image
run: |
docker build \
Expand Down
8 changes: 8 additions & 0 deletions Dockerfile-dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
FROM node:latest as build-stage
ARG REACT_APP_BACKEND_URL
ARG REACT_APP_KEYCLOAK_URL
ARG REACT_APP_KEYCLOAK_REALM
ARG REACT_APP_KEYCLOAK_CLIENT_ID
ARG REACT_APP_APPLICATION
ARG REACT_APP_CREATE_ORGANIZATION
ARG REACT_APP_CREATE_REGION
ARG REACT_APP_CREATE_INSTANCE
COPY . /app
WORKDIR /app
RUN npm install
Expand Down

0 comments on commit 0f04bb2

Please sign in to comment.