mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 22:50:18 +00:00
2d5d377967
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
98 lines
2.2 KiB
YAML
98 lines
2.2 KiB
YAML
name: "Publish aqua"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: "tag to checkout to"
|
|
type: string
|
|
required: true
|
|
workflow_call:
|
|
inputs:
|
|
tag:
|
|
description: "tag to checkout to"
|
|
type: string
|
|
required: true
|
|
|
|
env:
|
|
FORCE_COLOR: true
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: builder
|
|
timeout-minutes: 60
|
|
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ inputs.tag }}
|
|
|
|
- name: Cache Scala
|
|
uses: coursier/cache-action@v6
|
|
|
|
- name: Setup Scala
|
|
uses: coursier/setup-action@v1
|
|
with:
|
|
apps: sbt
|
|
|
|
- name: scala-js build
|
|
run: sbt ";cliJS/fullLinkJS;language-server-apiJS/fullLinkJS;aqua-apiJS/fullLinkJS"
|
|
|
|
- name: Import secrets
|
|
uses: hashicorp/vault-action@v2.7.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 pnpm
|
|
uses: pnpm/action-setup@v2.4.0
|
|
with:
|
|
version: 8
|
|
|
|
- name: Setup node with self-hosted npm registry
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "16"
|
|
registry-url: "https://registry.npmjs.org"
|
|
cache: "pnpm"
|
|
|
|
- run: pnpm -r i
|
|
|
|
- run: pnpm -r build
|
|
|
|
- name: Publish to NPM registry
|
|
run: pnpm publish --access public --tag unstable
|
|
|
|
aqua-native:
|
|
name: "Publish aqua-native"
|
|
strategy:
|
|
matrix:
|
|
runner:
|
|
- runs-on: ubuntu-latest
|
|
arch: amd64
|
|
os: linux
|
|
static: true
|
|
- runs-on: macos-latest
|
|
arch: amd64
|
|
os: macos
|
|
static: false
|
|
|
|
uses: ./.github/workflows/binary.yml
|
|
with:
|
|
runs-on: ${{ matrix.runner.runs-on }}
|
|
arch: ${{ matrix.runner.arch }}
|
|
os: ${{ matrix.runner.os }}
|
|
static: ${{ matrix.runner.static }}
|