aqua/.github/workflows/publish.yml
renovate[bot] e0513a6218
chore(deps): update all github-actions (major) (#1141)
chore(deps): update all github-actions

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-05-20 06:54:49 +00:00

76 lines
1.7 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@v4
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 ";language-server-apiJS/fullBundleJS;aqua-apiJS/fullBundleJS"
- name: Import secrets
uses: hashicorp/vault-action@v3.0.0
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@v4.0.0
with:
version: 8
- name: Setup node with self-hosted npm registry
uses: actions/setup-node@v4
with:
node-version: "18"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- run: pnpm --filter='!integration-tests' -r i
- run: pnpm --filter='!integration-tests' -r build
- name: Publish to NPM registry
run: pnpm --filter='!integration-tests' publish --access public --tag unstable