Skip to content

Commit

Permalink
Create platformer-d8dcab6f-62b6-49c7-8d17-e2c0c90c6954.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kosalag authored Sep 15, 2022
1 parent d1e9c6f commit c59efdf
Showing 1 changed file with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Platformer Generated dev-ui-push Build
'on':
push:
branches:
- master
jobs:
build:
runs-on:
- ubuntu-latest
env:
SERVICE_NAME: ghcr.io/eclk/incidentmanagement
CONTAINER_REGISTRY: ghcr.io
steps:
- uses: actions/checkout@v2
- name: Set Version
id: event-version
run: echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/heads/}-${{github.sha}}
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ${{ env.CONTAINER_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_PASSWORD_D8DCAB6F_62B6_49C7_8D17_E2C0C90C6954 }}
- name: Build the Docker image
run: docker build --tag ${SERVICE_NAME}:dev-ui-${{steps.event-version.outputs.SOURCE_TAG }} --file ./frontend/Dockerfile ./frontend/ --build-arg API_BASE_URL=http://api.incident.ecdev.opensource.lk
- name: GitHub Image Push
run: docker push $SERVICE_NAME:dev-ui-${{steps.event-version.outputs.SOURCE_TAG }}
- name: Platformer Deploy
uses: platformer-com/build-deploy-action@v1
with:
org-id: ${{secrets.ORG_ID_49EDA5B8_F163_43D9_B00E_6A801E4364AF}}
project-id: ${{secrets.PROJECT_ID_49EDA5B8_F163_43D9_B00E_6A801E4364AF}}
token: ${{secrets.AUTOGENERATED_CICD_49EDA5B8_F163_43D9_B00E_6A801E4364AF}}
image-name: ${{env.SERVICE_NAME}}
tag: dev-ui-${{steps.event-version.outputs.SOURCE_TAG }}
container-id: 41c3d558-96f8-4a1a-983f-263c13b0325e

0 comments on commit c59efdf

Please sign in to comment.