Skip to content

chore(release): release v1.6.0 (last release) #23

chore(release): release v1.6.0 (last release)

chore(release): release v1.6.0 (last release) #23

# Copyright IBM Corp. All Rights Reserved.
#
# SPDX-License-Identifier: CC-BY-4.0
name: Deploy Corda Packages
on:
push:
branches:
- main
paths:
- 'common/protos-java-kt/gradle.properties'
- 'core/network/corda-interop-app/gradle.properties'
- 'sdks/corda/gradle.properties'
- 'core/drivers/corda-driver/VERSION'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
publish-protos:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/[email protected]
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Generate github.properties
run: |
echo "Using ${GITHUB_ACTOR} user."
echo "username=${GITHUB_ACTOR}" >> github.properties
echo "password=${{ secrets.GITHUB_TOKEN }}" >> github.properties
echo "url=https://maven.pkg.github.com/${GITHUB_REPOSITORY_OWNER}/weaver-dlt-interoperability" >> github.properties
cat github.properties
working-directory: common/protos-java-kt
- name: Publish
run: |
make publish > out 2> error
exitStatus=$?
(cat error | grep "Received status code 409 from server: Conflict" && exit 0) || exit $exitStatus
working-directory: common/protos-java-kt
publish-interop-app:
if: always()
needs: publish-protos
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/[email protected]
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Generate github.properties
run: |
echo "Using ${GITHUB_ACTOR} user."
echo "username=${GITHUB_ACTOR}" >> github.properties
echo "password=${{ secrets.GITHUB_TOKEN }}" >> github.properties
echo "url=https://maven.pkg.github.com/${GITHUB_REPOSITORY_OWNER}/weaver-dlt-interoperability" >> github.properties
cat github.properties
working-directory: core/network/corda-interop-app
- name: Build
run: make build
working-directory: core/network/corda-interop-app
- name: Publish
run: |
make publish > out 2> error
exitStatus=$?
(cat error | grep "Received status code 409 from server: Conflict" && exit 0) || exit $exitStatus
working-directory: core/network/corda-interop-app
publish-sdk:
if: always()
needs: [publish-protos, publish-interop-app]
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/[email protected]
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Generate github.properties
run: |
echo "Using ${GITHUB_ACTOR} user."
echo "username=${GITHUB_ACTOR}" >> github.properties
echo "password=${{ secrets.GITHUB_TOKEN }}" >> github.properties
echo "url=https://maven.pkg.github.com/${GITHUB_REPOSITORY_OWNER}/weaver-dlt-interoperability" >> github.properties
cat github.properties
working-directory: sdks/corda
- name: Build
run: make build
working-directory: sdks/corda
- name: Publish
run: |
make publish > out 2> error
exitStatus=$?
(cat error | grep "Received status code 409 from server: Conflict" && exit 0) || exit $exitStatus
working-directory: sdks/corda
publish-driver-image:
if: ${{ always() && github.repository_owner == 'hyperledger-labs' }}
needs: [publish-protos, publish-interop-app, publish-sdk]
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/[email protected]
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate github.properties
run: |
echo "Using ${GITHUB_ACTOR} user."
echo "username=${GITHUB_ACTOR}" >> github.properties
echo "password=${{ secrets.GITHUB_TOKEN }}" >> github.properties
echo "url=https://maven.pkg.github.com/${GITHUB_REPOSITORY_OWNER}/weaver-dlt-interoperability" >> github.properties
cat github.properties
working-directory: core/drivers/corda-driver
- name: Check if package already exists
run: (make check-if-tag-exists && echo "CORDA_DRIVER_PUSH=true" >> $GITHUB_ENV) || echo "CORDA_DRIVER_PUSH=false" >> $GITHUB_ENV
working-directory: core/drivers/corda-driver
- name: Build and Push
if: ${{ env.CORDA_DRIVER_PUSH == 'true' }}
run: make push-image
working-directory: core/drivers/corda-driver
- name: Push latest tag
if: ${{ env.CORDA_DRIVER_PUSH == 'true' }}
run: make push-image-latest
working-directory: core/drivers/corda-driver