Skip to content

Id 367 get user registration from sam #833

Id 367 get user registration from sam

Id 367 get user registration from sam #833

Workflow file for this run

name: Publish Pacts
on:
workflow_dispatch:
pull_request:
branches: [ dev ]
paths-ignore:
- 'README.md'
- 'integration-tests'
push:
branches: [ dev ]
env:
PUBLISH_CONTRACTS_RUN_NAME: 'publish-contracts-${{ github.event.repository.name }}-${{ github.run_id }}-${{ github.run_attempt }}'
CAN_I_DEPLOY_RUN_NAME: 'can-i-deploy-${{ github.event.repository.name }}-${{ github.run_id }}-${{ github.run_attempt }}'
jobs:
setup-and-test:
runs-on: ubuntu-latest
outputs:
pact-b64: ${{ steps.encode.outputs.pact-b64 }}
new-tag: ${{ steps.tag.outputs.new_tag }}
repo-branch: ${{ steps.extract-branch.outputs.repo-branch }}
steps:
- uses: actions/checkout@v3
- id: extract-branch
run: |
GITHUB_EVENT_NAME=${{ github.event_name }}
if [[ "$GITHUB_EVENT_NAME" == "push" ]]; then
GITHUB_REF=${{ github.ref }}
elif [[ "$GITHUB_EVENT_NAME" == "pull_request" ]]; then
GITHUB_REF=refs/heads/${{ github.head_ref }}
elif [[ "$GITHUB_EVENT_NAME" == "merge_group" ]]; then
GITHUB_REF=refs/heads/${{ github.head_ref }}
else
echo "Failed to extract branch information"
exit 1
fi
echo "repo-branch=${GITHUB_REF/refs\/heads\//""}" >> $GITHUB_OUTPUT
- name: Bump the tag to a new version
uses: databiosphere/github-actions/actions/bumper@bumper-0.3.0
id: tag
env:
DEFAULT_BUMP: patch
GITHUB_TOKEN: ${{ secrets.BROADBOT_TOKEN }}
RELEASE_BRANCHES: dev
WITH_V: true
DRY_RUN: true
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '~20.11'
- name: Install dependencies
run: |
yarn install
- name: Run tests
run: yarn test "\b\w*Pact\w*\.test\.(js|ts)\b" # This matches any test file that contains the word "Pact" at the end of its name, either js or ts.
- name: Encode the pact as non-breaking base 64 string
id: encode
env:
PACT_FULL_PATH: 'pacts/terraui-cbas.json' # Currently, workflows are limited to a single Pact file (see WM-1858).
run: |
NON_BREAKING_B64=$(cat $PACT_FULL_PATH | base64 -w 0)
echo "pact-b64=${NON_BREAKING_B64}" >> $GITHUB_OUTPUT
echo $NON_BREAKING_B64
publish-pact-workflow:
runs-on: ubuntu-latest
needs: [setup-and-test]
permissions:
contents: 'read'
id-token: 'write'
steps:
- name: Publish Pact contracts
uses: broadinstitute/workflow-dispatch@v4.0.0
with:
workflow: publish-contracts.yaml
repo: broadinstitute/terra-github-workflows
ref: refs/heads/main
token: ${{ secrets.BROADBOT_TOKEN}} # github token for access to kick off a job in the private repo
inputs: '{
"run-name": "${{ env.PUBLISH_CONTRACTS_RUN_NAME }}",
"pact-b64": "${{ needs.setup-and-test.outputs.pact-b64 }}",
"repo-owner": "${{ github.repository_owner }}",
"repo-name": "${{ github.event.repository.name }}",
"repo-branch": "${{ needs.setup-and-test.outputs.repo-branch }}",
"release-tag": "${{ needs.setup-and-test.outputs.new-tag }}"
}'