This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
Publish extension manual #3
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
name: Publish extension manual | |
on: | |
workflow_call: | |
inputs: | |
workspace: | |
required: true | |
type: string | |
description: | | |
The yarn workspace the extension is in. | |
pre-release: | |
required: false | |
type: boolean | |
description: | | |
Whether this is a pre-release. | |
version: | |
required: true | |
type: string | |
description: | | |
The version to publish. | |
secrets: | |
CARGO_REGISTRY_TOKEN: | |
required: true | |
VSCE_PAT: | |
required: true | |
workflow_dispatch: | |
inputs: | |
workspace: | |
required: true | |
type: string | |
description: | | |
The yarn workspace the extension is in. | |
pre-release: | |
required: false | |
type: boolean | |
description: | | |
Whether this is a pre-release. | |
version: | |
required: true | |
type: string | |
description: | | |
The version to publish. | |
jobs: | |
publish: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: windows-latest | |
target: x86_64-pc-windows-msvc | |
code-target: win32-x64 | |
- os: windows-latest | |
target: i686-pc-windows-msvc | |
code-target: win32-ia32 | |
- os: windows-latest | |
target: aarch64-pc-windows-msvc | |
code-target: win32-arm64 | |
- os: ubuntu-20.04 | |
target: x86_64-unknown-linux-gnu | |
code-target: linux-x64 | |
#container: ubuntu:18.04 | |
#- os: ubuntu-20.04 | |
# target: aarch64-unknown-linux-gnu | |
# code-target: linux-arm64 | |
#- os: ubuntu-20.04 | |
# target: arm-unknown-linux-gnueabihf | |
# code-target: linux-armhf | |
- os: macos-11 | |
target: x86_64-apple-darwin | |
code-target: darwin-x64 | |
- os: macos-11 | |
target: aarch64-apple-darwin | |
code-target: darwin-arm64 | |
uses: ./.github/workflows/publish-targeted-extension.yml | |
with: | |
workspace: ${{ inputs.workspace }} | |
os: ${{ matrix.os }} | |
target: ${{ matrix.target }} | |
code-target: ${{ matrix.code-target }} | |
version: ${{ inputs.version }} | |
pre-release: ${{ inputs.pre-release }} | |
secrets: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
commit-and-tag: | |
needs: publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup yarn | |
id: setup-yarn | |
run: | | |
corepack enable | |
corepack prepare yarn@stable --activate | |
yarn set version stable | |
yarn -v | |
- name: Install | |
run: | | |
yarn install --immutable | |
- name: Get tag prefix | |
id: get-tag-prefix | |
uses: actions/github-script@v6 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const workspace = '${{ inputs.workspace }}'; | |
const language = workspace.split('-')[1]; | |
return language; | |
- name: Setup git config | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Astrodevs CI" | |
- name: update package.json, commit and tag | |
run: | | |
yarn workspace ${{ inputs.workspace }}-extension version ${{ inputs.version }} | |
git add . | |
git commit -m "chore: release ${{ steps.get-tag-prefix.outputs.result }} ${{ inputs.version }}" | |
git tag -a "${{steps.get-tag-prefix.outputs.result}}-${{ inputs.version }}" -m "Release ${{ steps.get-tag-prefix.outputs.result }} ${{ inputs.version }}" | |
git push origin ${{ github.ref }} --follow-tags | |