Skip to content

Commit

Permalink
feat(actions): 🎉 add github-action integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Jan 4, 2024
1 parent cb70bae commit 1e9981a
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/onpremise-dds-01.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Docker Image (onpremise-dds-01)

on:
push:
tags:
- "*"

jobs:
build:
runs-on: ubuntu-latest
environment:
name: onpremise-dds-01

steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Extract Version from package.json
id: project_version
run: echo "::set-output name=version::$(node -e 'console.log(require("./package.json").version)')"

- name: Build the Docker Image
run: |
docker build \
--file Dockerfile \
--tag robolaunchio/frontend-onpremise:${{ steps.project_version.outputs.version }}-dds-01 \
--build-arg REACT_APP_BACKEND_URL=${{ secrets.REACT_APP_BACKEND_URL }} \
--build-arg REACT_APP_KEYCLOAK_URL=${{ secrets.REACT_APP_KEYCLOAK_URL }} \
--build-arg REACT_APP_KEYCLOAK_REALM=${{ secrets.REACT_APP_KEYCLOAK_REALM }} \
--build-arg REACT_APP_KEYCLOAK_CLIENT_ID=${{ secrets.REACT_APP_KEYCLOAK_CLIENT_ID }} \
--build-arg REACT_APP_APPLICATION=${{ secrets.REACT_APP_APPLICATION }} \
--build-arg REACT_APP_CREATE_ORGANIZATION=${{ secrets.REACT_APP_CREATE_ORGANIZATION }} \
--build-arg REACT_APP_CREATE_REGION=${{ secrets.REACT_APP_CREATE_REGION }} \
--build-arg REACT_APP_CREATE_INSTANCE=${{ secrets.REACT_APP_CREATE_INSTANCE }} \
.
- name: Login to Docker Hub
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}

- name: Push the Docker Image to Docker Hub
run: docker push robolaunchio/frontend-onpremise:${{ steps.project_version.outputs.version }}-dds-01

0 comments on commit 1e9981a

Please sign in to comment.