Skip to content

feat!: updating DIDComm presentation protocols (#383) #4

feat!: updating DIDComm presentation protocols (#383)

feat!: updating DIDComm presentation protocols (#383) #4

Workflow file for this run

name: Integration
on:
push:
branches:
- "main"
tags:
- "v*"
jobs:
integrate-revision:
if: github.ref == 'refs/heads/main'
name: Integrate revision
runs-on: ubuntu-latest
steps:
- name: Dispatch integration
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.ATALA_GITHUB_TOKEN }}
repository: input-output-hk/identus-integration
event-type: integration
client-payload: '{"component": "sdk-ts", "release": false, "version": "${{ github.sha }}" }'
integrate-release:
if: startsWith(github.ref, 'refs/tags/v')
name: Integrate release
runs-on: ubuntu-latest
steps:
- name: Get tag
id: tag
run: echo "name=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"
- name: Dispatch integration
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ secrets.ATALA_GITHUB_TOKEN }}
repository: input-output-hk/identus-integration
event-type: integration
client-payload: '{"component": "sdk-ts", "release": true, "version": "${{ steps.tag.outputs.name }}" }'