Feature 2673 sonarqube beta6 vector dictionary (#2994) #511
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 Docker Image and Trigger METplus Workflow | |
on: | |
push: | |
branches: | |
- develop | |
paths-ignore: | |
- 'docs/**' | |
workflow_dispatch: | |
env: | |
DOCKERHUB_REPO: dtcenter/met-dev | |
jobs: | |
build_met_docker: | |
name: Handle Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get branch name | |
id: get_branch_name | |
run: echo branch_name=${GITHUB_REF#refs/heads/} >> $GITHUB_OUTPUT | |
- name: Build Docker Image | |
run: .github/jobs/build_docker_image.sh | |
env: | |
SOURCE_BRANCH: ${{ steps.get_branch_name.outputs.branch_name }}-lite | |
MET_BASE_REPO: met-base | |
MET_BASE_TAG: v3.3 | |
- name: Push Docker Image | |
run: .github/jobs/push_docker_image.sh | |
env: | |
SOURCE_BRANCH: ${{ steps.get_branch_name.outputs.branch_name }}-lite | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
trigger_metplus: | |
name: Trigger METplus testing workflow | |
runs-on: ubuntu-latest | |
needs: build_met_docker | |
steps: | |
- name: Print GitHub values for reference | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- uses: actions/github-script@v7 | |
with: | |
github-token: ${{ secrets.METPLUS_BOT_TOKEN }} | |
script: | | |
await github.rest.actions.createWorkflowDispatch({ | |
owner: 'dtcenter', | |
repo: 'METplus', | |
workflow_id: 'testing.yml', | |
ref: 'develop', | |
inputs: { | |
repository: '${{ github.repository }}', | |
ref: '${{ github.ref }}', | |
actor: '${{ github.actor }}', | |
sha: '${{ github.sha }}', | |
pusher_email: '${{ github.event.pusher.email }}' | |
}, | |
}); |