Release #21
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: Release | |
on: | |
- workflow_dispatch | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
outputs: | |
version: ${{ steps.version.outputs.version }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
submodules: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org | |
- run: corepack enable | |
- run: yarn install --immutable | |
- run: yarn lint | |
- run: yarn publish | |
env: | |
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Export version | |
id: version | |
run: | | |
VERSION=$(cat packages/solarwinds-apm/package.json | jq -r '.version') | |
echo "version=$VERSION" >> "$GITHUB_OUTPUT" | |
lambda: | |
needs: publish | |
uses: ./.github/workflows/lambda.yml | |
with: | |
type: production | |
version: ${{ needs.publish.outputs.version }} | |
secrets: inherit | |
draft: | |
needs: | |
- publish | |
- lambda | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
submodules: true | |
- name: Replace placeholders in release template | |
run: | | |
API=$(cat packages/solarwinds-apm/package.json | jq -r '.peerDependencies."@opentelemetry/api"') | |
CORE=$(cat packages/solarwinds-apm/package.json | jq -r '.dependencies."@opentelemetry/core"') | |
INSTRUMENTATION=$(cat packages/solarwinds-apm/package.json | jq -r '.dependencies."@opentelemetry/instrumentation"') | |
sed -i 's/{{arn}}/${{ needs.lambda.outputs.arn }}/' .github/RELEASE.md | |
sed -i "s/{{api}}/${API}/" .github/RELEASE.md | |
sed -i "s/{{core}}/${CORE}/" .github/RELEASE.md | |
sed -i "s/{{instrumentation}}/${INSTRUMENTATION}/" .github/RELEASE.md | |
- name: Create release draft | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VERSION: ${{ needs.publish.outputs.version }} | |
run: | | |
gh release create "v${VERSION}" \ | |
--title "solarwinds-apm ${VERSION}" \ | |
--notes-file ".github/RELEASE.md" \ | |
--draft \ | |
--verify-tag |