typo #62
Workflow file for this run
This file contains 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
on: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+*' | |
name: AutoRelease | |
jobs: | |
release_maven: | |
name: Build and release to Maven | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- run: scripts/setup-signing-key.sh | |
env: | |
DECRYPTER: ${{ secrets.DECRYPTER }} | |
SIGNING_KEY: ${{ secrets.SIGNING_KEY }} | |
PASSPHRASE: ${{ secrets.PASSPHRASE }} | |
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUBLISH_KEY }} | |
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUBLISH_SECRET }} | |
- name: Build and Release | |
run: ./gradlew -Pversion=${{ github.ref_name }} clean check publishMavenPublicationToSonatype closeAndReleaseSonatypeStagingRepository | |
env: | |
CTP_OSS_USER: ${{ secrets.OSS_USER }} | |
CTP_OSS_SECRET: ${{ secrets.OSS_SECRET }} | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "14" | |
- name: Build NPM package | |
run: | | |
./gradlew -Pversion=${{ github.ref_name }} tools:cli-application:shadowJar | |
cp rmf-codegen.jar node/rmf-codegen/bin | |
- name: Creating .npmrc | |
run: | | |
cat << EOF > "$HOME/.npmrc" | |
[email protected] | |
//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
EOF | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Publish npm package | |
working-directory: node/rmf-codegen | |
run: yarn publish --no-git-tag-version --minor | |
bump_version: | |
name: Bump NPM version | |
needs: [release_maven] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "14" | |
- name: Publish npm package | |
working-directory: node/rmf-codegen | |
run: yarn version --no-git-tag-version --minor | |
- uses: stefanzweifel/[email protected] | |
with: | |
file_pattern: "node/rmf-codegen/package.json" | |
commit_message: "Bump codegen version" | |
commit_user_name: Auto Mation | |
commit_user_email: [email protected] | |
commit_author: Auto Mation <[email protected]> |