Adding self-hosted runner for kubecon #360
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
name: Build Products | |
permissions: | |
contents: write | |
packages: write | |
'on': | |
workflow_dispatch: {} | |
push: | |
paths: | |
- '**/*' | |
- '!.github/badges/*' | |
- '!README.md' | |
- '!python/**/*' | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build Products Windows | |
uses: ./github/java-microservice-windows | |
with: | |
run_number: ${{ github.run_number }} | |
github_repo: ${{ github.repository }} | |
github_token: ${{ github.token }} | |
github_actor: ${{ github.actor }} | |
aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
service_directory: products-microservice | |
build-gcf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build Products GCF | |
uses: ./github/java-microservice | |
with: | |
run_number: ${{ github.run_number }} | |
github_repo: ${{ github.repository }} | |
github_token: ${{ github.token }} | |
github_actor: ${{ github.actor }} | |
aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} | |
dockerhub_password: ${{ secrets.DOCKERHUB_TOKEN }} | |
octopus_url: ${{ secrets.DSC_OCTOPUS_URL }} | |
octopus_apikey: ${{ secrets.DSC_OCTOPUS_API }} | |
service_directory: products-microservice-gcf | |
lambda_build: false | |
postman_build: false | |
liquibase_build: false | |
docker_build: false | |
systemd_build: false | |
run_tests: false | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Build Products Microservice | |
uses: ./github/java-microservice | |
with: | |
run_number: ${{ github.run_number }} | |
github_repo: ${{ github.repository }} | |
github_token: ${{ github.token }} | |
github_actor: ${{ github.actor }} | |
dockerhub_username: ${{ secrets.DOCKERHUB_USERNAME }} | |
dockerhub_password: ${{ secrets.DOCKERHUB_TOKEN }} | |
octopus_url: ${{ secrets.DSC_OCTOPUS_URL }} | |
octopus_apikey: ${{ secrets.DSC_OCTOPUS_API }} | |
aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
service_directory: products-microservice | |
- name: Build Products Helm Chart | |
uses: ./github/helm | |
with: | |
aws_access_key: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
chart_directory: octopub-products-mysql | |
octopus_url: ${{ secrets.DSC_OCTOPUS_URL }} | |
octopus_apikey: ${{ secrets.DSC_OCTOPUS_API }} |