-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #911 from ECLK/kosalag-patch-6
Platformer GitHub Action Created
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
.github/workflows/platformer-9f99429f-1443-4fb8-9afa-8b3a9d362e90.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Platformer Generated ui-stag-push Build | ||
'on': | ||
push: | ||
tags: | ||
- stag* | ||
jobs: | ||
build: | ||
runs-on: | ||
- ubuntu-latest | ||
env: | ||
SERVICE_NAME: ghcr.io/eclk/results-tabulation | ||
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/tags/} | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ${{ env.CONTAINER_REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.DOCKER_PASSWORD_9F99429F_1443_4FB8_9AFA_8B3A9D362E90 }} | ||
- name: Build the Docker image | ||
run: docker build --tag ${SERVICE_NAME}:${{steps.event-version.outputs.SOURCE_TAG }} --file ./results-tabulation-ui/Dockerfile ./results-tabulation-ui/ --build-arg AUTH_APP_URL="https://tabulations.ecstage.opensource.lk" --build-arg TABULATION_API_URL="https://apim-gw.ecstag.opensource.lk/tabulation/0.1.0" | ||
- name: GitHub Image Push | ||
run: docker push $SERVICE_NAME:${{steps.event-version.outputs.SOURCE_TAG }} | ||
- name: Platformer Deploy | ||
uses: platformer-com/build-deploy-action@v1 | ||
with: | ||
org-id: ${{secrets.ORG_ID_FCB1AEBE_71DB_4911_9067_F5FA9BA73D4D}} | ||
project-id: ${{secrets.PROJECT_ID_FCB1AEBE_71DB_4911_9067_F5FA9BA73D4D}} | ||
token: ${{secrets.AUTOGENERATED_CICD_FCB1AEBE_71DB_4911_9067_F5FA9BA73D4D}} | ||
image-name: ${{env.SERVICE_NAME}} | ||
tag: ${{steps.event-version.outputs.SOURCE_TAG }} | ||
container-id: 38522196-e2fb-453e-9729-2aac6c203042 |