Skip to content

fix status api for preserve host #439

fix status api for preserve host

fix status api for preserve host #439

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [dev, feature/*, fix/*]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
sonar-scan:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
gwa-api:
needs: sonar-scan
name: Docker Image for gwa-api
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/build-push-action@v1
with:
registry: docker.pkg.github.com
username: $GITHUB_ACTOR
password: ${{ secrets.GITHUB_TOKEN }}
repository: bcgov/gwa-api/gwa-gateway-api
path: microservices/gatewayApi
dockerfile: microservices/gatewayApi/Dockerfile
tag_with_ref: true
tag_with_sha: false
add_git_labels: true
push: true
gwa-scheduler:
needs: sonar-scan
name: Docker Image for gwa-scheduler
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/build-push-action@v1
with:
registry: docker.pkg.github.com
username: $GITHUB_ACTOR
password: ${{ secrets.GITHUB_TOKEN }}
repository: bcgov/gwa-api/gwa-scheduler
path: microservices/gatewayJobScheduler
dockerfile: microservices/gatewayJobScheduler/Dockerfile
tag_with_ref: true
tag_with_sha: false
add_git_labels: true
push: true
gwa-kube-api:
needs: sonar-scan
name: Docker Image for gwa-kube-api
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/build-push-action@v1
with:
registry: docker.pkg.github.com
username: $GITHUB_ACTOR
password: ${{ secrets.GITHUB_TOKEN }}
repository: bcgov/gwa-api/gwa-kube-api
path: microservices/kubeApi
dockerfile: microservices/kubeApi/Dockerfile
tag_with_ref: true
tag_with_sha: false
add_git_labels: true
push: true