feat: Support dereferencing in drivers #37
This file contains hidden or 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: Maven snapshot and Docker latest image | |
| on: | |
| push: | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'README.md' | |
| - 'LICENSE' | |
| - 'docs' | |
| branches: [ main, 'test-driver-**' ] | |
| workflow_dispatch: | |
| jobs: | |
| maven-snapshot: | |
| uses: danubetech/workflows/.github/workflows/maven-snapshot.yml@main | |
| with: | |
| MAVEN_REPO_SERVER_ID: 'danubetech-maven-snapshots' | |
| secrets: | |
| VAULT_ADDR: ${{ secrets.VAULT_ADDR }} | |
| CI_SECRET_READER_PERIODIC_TOKEN: ${{ secrets.CI_SECRET_READER_PERIODIC_TOKEN }} | |
| VAULTCA: ${{ secrets.VAULTCA }} | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| docker-latest: | |
| needs: [ maven-snapshot ] | |
| uses: danubetech/workflows/.github/workflows/docker-latest.yml@main | |
| with: | |
| GLOBAL_IMAGE_NAME: universalresolver/uni-resolver-web | |
| GLOBAL_REPO_NAME: docker.io | |
| PATH_TO_DOCKERFILE: uni-resolver-web/docker/Dockerfile | |
| secrets: | |
| VAULT_ADDR: ${{ secrets.VAULT_ADDR }} | |
| CI_SECRET_READER_PERIODIC_TOKEN: ${{ secrets.CI_SECRET_READER_PERIODIC_TOKEN }} | |
| VAULTCA: ${{ secrets.VAULTCA }} | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| trigger-deployment: | |
| needs: [ docker-latest ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger AWS Kubernetes deployment | |
| uses: actions/github-script@v6 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| await github.rest.actions.createWorkflowDispatch({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| workflow_id: 'kubernetes-deploy-to-cluster.yml', | |
| ref: 'main' | |
| }) |