Skip to content

Commit

Permalink
Create platformer-65d8b6b3-04f8-46ae-b449-2a1ffe571812.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
YujithIsura authored Apr 4, 2022
1 parent ff118e5 commit 99125d6
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 ui-stag-push Build
'on':
push:
tags:
- stag*
jobs:
build:
runs-on:
- ubuntu-latest
env:
SERVICE_NAME: ghcr.io/eclk/nomination
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_65D8B6B3_04F8_46AE_B449_2A1FFE571812 }}
- name: Build the Docker image
run: docker build --tag ${SERVICE_NAME}:stag${{steps.event-version.outputs.SOURCE_TAG }} --file ./client/Staging.Dockerfile ./client
- name: GitHub Image Push
run: docker push $SERVICE_NAME:stag${{steps.event-version.outputs.SOURCE_TAG }}
- name: Platformer Deploy
uses: platformer-com/build-deploy-action@v1
with:
org-id: ${{secrets.ORG_ID_92DA1243_81F5_47E6_B824_A409AD65A74D}}
project-id: ${{secrets.PROJECT_ID_92DA1243_81F5_47E6_B824_A409AD65A74D}}
token: ${{secrets.AUTOGENERATED_CICD_92DA1243_81F5_47E6_B824_A409AD65A74D}}
image-name: ${{env.SERVICE_NAME}}
tag: stag${{steps.event-version.outputs.SOURCE_TAG }}
container-id: e66846c7-3a19-4e95-a634-9a01a2494ec0

0 comments on commit 99125d6

Please sign in to comment.