Skip to content

fix: order by creation date (#1280) #213

fix: order by creation date (#1280)

fix: order by creation date (#1280) #213

Workflow file for this run

name: Publish
on:
push:
branches:
- main
paths:
- 'packages/**'
workflow_dispatch:
permissions:
contents: write
env:
NPM_PKG: '@hyperledger/aries-oca'
NPM_TAG: 'alpha'
jobs:
release-canary:
name: Alpha Release
runs-on: ubuntu-22.04
timeout-minutes: 7
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup NodeJS
uses: ./.github/actions/setup-node
- name: Install dependencies
run: yarn install --immutable
# On push to main, release unstable version
- name: Release ${{ env.NPM_TAG }}
run: |
git update-index --assume-unchanged $(find . -type d -name node_modules -prune -o -name 'package.json' -print | tr "\n" " ")
#export NEXT_VERSION_BUMP=$(yarn next-version-bump)
export NEXT_VERSION_BUMP="major"
npx lerna publish --no-private --loglevel=silly --canary $NEXT_VERSION_BUMP --dist-tag $NPM_TAG --force-publish --yes
env:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH }}
- name: Fetch current published version
id: get-version
run: |
LAST_RELEASED_VERSION=$(npm view $NPM_PKG@$NPM_TAG version)
echo "last_released_version=$LAST_RELEASED_VERSION" >> $GITHUB_OUTPUT
- name: Config git
run: |
git config --global user.name "GitHub Action"
git config --global user.email "[email protected]"
- name: Set current git tag
run: |
git tag v${{ steps.get-version.outputs.last_released_version }}
git push origin v${{ steps.get-version.outputs.last_released_version}} --no-verify
# Release will be triggerd by
# if: "${{ startsWith(github.event.head_commit.message, 'chore(release): v') }}"