mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 22:50:18 +00:00
222 lines
5.5 KiB
YAML
222 lines
5.5 KiB
YAML
|
name: "publish-aqua"
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
inputs:
|
||
|
version:
|
||
|
description: 'aqua version to publish'
|
||
|
required: true
|
||
|
|
||
|
concurrency:
|
||
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
||
|
|
||
|
env:
|
||
|
FORCE_COLOR: true
|
||
|
|
||
|
jobs:
|
||
|
compile:
|
||
|
runs-on: builder
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Cache Scala
|
||
|
uses: coursier/cache-action@v6
|
||
|
|
||
|
- name: Setup Scala
|
||
|
uses: coursier/setup-action@v1
|
||
|
with:
|
||
|
apps: sbt
|
||
|
|
||
|
- name: JS CLI build
|
||
|
run: sbt cliJS/fullLinkJS
|
||
|
|
||
|
- name: JS API build
|
||
|
run: sbt aqua-api/fullLinkJS
|
||
|
|
||
|
- name: JS LSP build
|
||
|
run: sbt language-server-api/fullLinkJS
|
||
|
|
||
|
- name: Upload aqua-cli artifact
|
||
|
uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: aqua-cli
|
||
|
path: cli/cli/.js/target/scala-*/cli-opt/main.js
|
||
|
|
||
|
- name: Upload aqua-api artifact
|
||
|
uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: aqua-api
|
||
|
path: api/aqua-api/target/scala-*/aqua-api-opt/main.js
|
||
|
|
||
|
- name: Upload aqua-lsp artifact
|
||
|
uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: aqua-lsp
|
||
|
path: language-server/language-server-api/target/scala-*/language-server-api-opt/main.js
|
||
|
|
||
|
aqua-cli:
|
||
|
name: "Publish aqua-cli"
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
needs:
|
||
|
- compile
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
id-token: write
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Download aqua-cli artifact
|
||
|
uses: actions/download-artifact@v3
|
||
|
with:
|
||
|
name: aqua-cli
|
||
|
|
||
|
- run: mv scala-*/*/main.js cli/cli-npm/aqua.js
|
||
|
|
||
|
- name: Import secrets
|
||
|
uses: hashicorp/vault-action@v2.4.3
|
||
|
with:
|
||
|
url: https://vault.fluence.dev
|
||
|
path: jwt/github
|
||
|
role: ci
|
||
|
method: jwt
|
||
|
jwtGithubAudience: "https://github.com/fluencelabs"
|
||
|
jwtTtl: 300
|
||
|
exportToken: false
|
||
|
secrets: |
|
||
|
kv/npmjs/fluencebot token | NODE_AUTH_TOKEN
|
||
|
|
||
|
- name: Setup node
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: "16"
|
||
|
registry-url: "https://registry.npmjs.org"
|
||
|
cache-dependency-path: "cli/cli-npm/package-lock.json"
|
||
|
cache: "npm"
|
||
|
|
||
|
- name: Set version
|
||
|
run: npm version ${{ github.event.inputs.version }}
|
||
|
working-directory: cli/cli-npm
|
||
|
|
||
|
- run: npm i
|
||
|
working-directory: cli/cli-npm
|
||
|
|
||
|
- run: npm run build
|
||
|
working-directory: cli/cli-npm
|
||
|
|
||
|
- name: Publish to NPM registry
|
||
|
run: npm publish --access public
|
||
|
working-directory: cli/cli-npm
|
||
|
|
||
|
aqua-api:
|
||
|
name: "Publish aqua-api"
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
needs:
|
||
|
- compile
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
id-token: write
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Download aqua-api artifact
|
||
|
uses: actions/download-artifact@v3
|
||
|
with:
|
||
|
name: aqua-api
|
||
|
|
||
|
- run: mv scala-*/*/main.js api/aqua-api-npm/aqua-api.js
|
||
|
|
||
|
- name: Import secrets
|
||
|
uses: hashicorp/vault-action@v2.4.3
|
||
|
with:
|
||
|
url: https://vault.fluence.dev
|
||
|
path: jwt/github
|
||
|
role: ci
|
||
|
method: jwt
|
||
|
jwtGithubAudience: "https://github.com/fluencelabs"
|
||
|
jwtTtl: 300
|
||
|
exportToken: false
|
||
|
secrets: |
|
||
|
kv/npmjs/fluencebot token | NODE_AUTH_TOKEN
|
||
|
|
||
|
- name: Setup node
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: "16"
|
||
|
registry-url: "https://registry.npmjs.org"
|
||
|
cache-dependency-path: "api/aqua-api-npm/package-lock.json"
|
||
|
cache: "npm"
|
||
|
|
||
|
- name: Set version
|
||
|
run: npm version ${{ github.event.inputs.version }}
|
||
|
working-directory: api/aqua-api-npm
|
||
|
|
||
|
- run: npm i
|
||
|
working-directory: api/aqua-api-npm
|
||
|
|
||
|
- name: Publish to NPM registry
|
||
|
run: npm publish --access public
|
||
|
working-directory: api/aqua-api-npm
|
||
|
|
||
|
aqua-lsp:
|
||
|
name: "Publish aqua-lsp"
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
needs:
|
||
|
- compile
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
id-token: write
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Download aqua-lsp artifact
|
||
|
uses: actions/download-artifact@v3
|
||
|
with:
|
||
|
name: aqua-lsp
|
||
|
|
||
|
- run: mv scala-*/*/main.js language-server/language-server-npm/aqua-lsp-api.js
|
||
|
|
||
|
- name: Import secrets
|
||
|
uses: hashicorp/vault-action@v2.4.3
|
||
|
with:
|
||
|
url: https://vault.fluence.dev
|
||
|
path: jwt/github
|
||
|
role: ci
|
||
|
method: jwt
|
||
|
jwtGithubAudience: "https://github.com/fluencelabs"
|
||
|
jwtTtl: 300
|
||
|
exportToken: false
|
||
|
secrets: |
|
||
|
kv/npmjs/fluencebot token | NODE_AUTH_TOKEN
|
||
|
|
||
|
- name: Setup node
|
||
|
uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: "16"
|
||
|
registry-url: "https://registry.npmjs.org"
|
||
|
cache-dependency-path: "language-server/language-server-npm/package-lock.json"
|
||
|
cache: "npm"
|
||
|
|
||
|
- name: Set version
|
||
|
run: npm version ${{ github.event.inputs.version }}
|
||
|
working-directory: language-server/language-server-npm
|
||
|
|
||
|
- run: npm i
|
||
|
working-directory: language-server/language-server-npm
|
||
|
|
||
|
- name: Publish to NPM registry
|
||
|
run: npm publish --access public
|
||
|
working-directory: language-server/language-server-npm
|