Skip to content

Merge branch 'beta' of github.com:analogjs/analog into beta #8

Merge branch 'beta' of github.com:analogjs/analog into beta

Merge branch 'beta' of github.com:analogjs/analog into beta #8

Workflow file for this run

name: Release
on:
push:
branches:
- beta
permissions:
contents: read # for checkout
jobs:
version:
name: Version Packages
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: .node-version
- run: corepack enable
- run: pnpm --version
- name: Install dependencies
uses: actions/setup-node@v3
with:
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
- name: Install
run: pnpm install --frozen-lockfile --prefer-offline
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
- name: Build
run: pnpm build
- name: Publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
TAG="$(${{ github.ref_name == 'main' }} && echo 'latest' || echo '${{ github.ref_name }}')"
./tools/publish.sh
# publish:
# name: Publish Packages
# runs-on: ubuntu-latest
# needs:
# - version
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - name: Setup Node.js
# uses: actions/setup-node@v3
# with:
# node-version-file: .node-version
# - run: corepack enable
# - run: pnpm --version
# - name: Install dependencies
# uses: actions/setup-node@v3
# with:
# cache: 'pnpm'
# cache-dependency-path: '**/pnpm-lock.yaml'
# - name: Install
# run: pnpm install --frozen-lockfile --prefer-offline
# - name: Build
# run: pnpm build --skip-nx-cache
# - name: Publish
# env:
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# run: |
# TAG="$(${{ github.ref_name == 'main' }} && echo 'latest' || echo '${{ github.ref_name }}')"
# ./tools/publish.sh