-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create platformer-c86af892-ffab-4d86-9f3d-da98730bdfc2.yml
- Loading branch information
1 parent
808dec0
commit f266efc
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-c86af892-ffab-4d86-9f3d-da98730bdfc2.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 api-stag-ui Build | ||
'on': | ||
push: | ||
tags: | ||
- stag* | ||
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/tags/} | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ${{ env.CONTAINER_REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.DOCKER_PASSWORD_C86AF892_FFAB_4D86_9F3D_DA98730BDFC2 }} | ||
- name: Build the Docker image | ||
run: docker build --tag ${SERVICE_NAME}:api-stag${{steps.event-version.outputs.SOURCE_TAG }} --file ./backend/Dockerfile ./backend/ | ||
- name: GitHub Image Push | ||
run: docker push $SERVICE_NAME:api-stag${{steps.event-version.outputs.SOURCE_TAG }} | ||
- name: Platformer Deploy | ||
uses: platformer-com/build-deploy-action@v1 | ||
with: | ||
org-id: ${{secrets.ORG_ID_E8AEDE36_3213_4D3A_80FD_C3897CFBBF97}} | ||
project-id: ${{secrets.PROJECT_ID_E8AEDE36_3213_4D3A_80FD_C3897CFBBF97}} | ||
token: ${{secrets.AUTOGENERATED_CICD_E8AEDE36_3213_4D3A_80FD_C3897CFBBF97}} | ||
image-name: ${{env.SERVICE_NAME}} | ||
tag: api-stag${{steps.event-version.outputs.SOURCE_TAG }} | ||
container-id: f2075213-1344-497a-be81-b033d299359c |