Build oee-simulators #98
Workflow file for this run
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 oee-simulators | |
on: | |
workflow_call: | |
inputs: | |
environment: | |
required: true | |
type: string | |
outputs: | |
release_version: | |
description: "The release version variable" | |
value: ${{ jobs.build-upload.outputs.release_version }} | |
secrets: | |
C8Y_PASSWORD: | |
required: true | |
workflow_dispatch: | |
inputs: | |
environment: | |
type: environment | |
description: Name of the environment to use | |
default: "oee-dev" | |
required: true | |
jobs: | |
call-test-workflow: | |
uses: ./.github/workflows/test.yml | |
with: | |
environment: ${{ inputs.environment }} | |
secrets: | |
C8Y_PASSWORD: ${{ secrets.C8Y_PASSWORD }} | |
build-upload: | |
needs: call-test-workflow | |
runs-on: ubuntu-latest | |
outputs: | |
release_version: ${{ steps.update-version-number.outputs.release_version }} | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
path: 'repo' | |
- name: Update version number | |
id: update-version-number | |
run: | | |
cd repo/simulators | |
SIMULATOR_VERSION=$((GITHUB_RUN_NUMBER + 43)) | |
sed -i "s/@project.version@/1.0.${SIMULATOR_VERSION}/g" cumulocity.json | |
echo "release_version=${SIMULATOR_VERSION}" >> $GITHUB_OUTPUT | |
- name: Build Docker image | |
run: | | |
cd repo/simulators | |
docker build -t oee-simulators . | |
docker save -o image.tar oee-simulators | |
docker rmi oee-simulators | |
- name: Upload file and zip an artifact | |
uses: actions/upload-artifact@v3.1.2 | |
with: | |
name: 'oee-simulators' | |
path: | | |
repo/simulators/image.tar | |
repo/simulators/cumulocity.json |