v3.18.0 #14
Workflow file for this run
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-to-npm | |
on: | |
release: | |
types: [released] | |
# Support manual releases in case something goes wrong, or we need to do a test. | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: Tag to be published | |
type: string | |
required: true | |
jobs: | |
# Step 1: Verify that the tag we're trying to release is a valid candidate for publishing. | |
verify-candidate-tag: | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the release branch, and get its head commit as output for later. | |
- uses: actions/checkout@v3 | |
with: | |
ref: 'release' | |
- run: echo "COMMIT_ID=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
id: get-branch-commit | |
# Checkout the tag we want to release, and get its head commit as output for later. | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.release.tag_name || inputs.tag }} | |
- run: echo "COMMIT_ID=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | |
id: get-tag-commit | |
# If the two commits aren't identical, the tag isn't eligible for release. | |
- name: Fail non-matching commits | |
if: ${{ steps.get-branch-commit.outputs.COMMIT_ID != steps.get-tag-commit.outputs.COMMIT_ID }} | |
run: | | |
echo "Tag commit must match latest commit in release. Branch is ${{ steps.get-branch-commit.outputs.COMMIT_ID }}. Tag is ${{ steps.get-tag-commit.outputs.COMMIT_ID }}" | |
exit 1 | |
# Verify that the tag is of the format "vX.Y.Z", where the X, Y, and Z exactly match the corresponding values in | |
# `package.json`'s version property. | |
- name: Compare tag to package.json | |
run: | | |
TAG=${{ github.event.release.tag_name || inputs.tag }} | |
PACKAGE_VERSION=v`cat package.json | jq '.version' | xargs` | |
[[ ${TAG} == ${PACKAGE_VERSION} ]] || (echo "Tag name must match package.json version, prefixed by lowercase v" && exit 1) | |
# Step 2: Publish the tag as a release candidate. | |
publish-rc: | |
needs: verify-candidate-tag | |
uses: salesforcecli/github-workflows/.github/workflows/npmPublish.yml@main | |
with: | |
ctc: false # We've been told we don't have to care about this until someone makes us care. | |
sign: true | |
tag: latest-rc # Publish as a release candidate, so we can do our validations against it. | |
githubTag: ${{ github.event.release.tag_name || inputs.tag }} | |
secrets: inherit | |
# Step 3: Run smoke tests against the release candidate. | |
rc-test: | |
needs: publish-rc | |
strategy: | |
# By default, if any job in a matrix fails, all other jobs are immediately cancelled. This option makes the jobs | |
# run to completion instead. | |
fail-fast: false | |
matrix: | |
os: [{vm: ubuntu-latest, exe: .sh}, {vm: windows-2019, exe: .cmd}] | |
runs-on: ${{ matrix.os.vm }} | |
steps: | |
# We need to checkout the tag to get the smoke tests | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.release.tag_name || inputs.tag }} | |
# We need Node LTS and Java v11 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' # For now, Java version is hardcoded. | |
# Install SFDX, and the release candidate version. | |
- run: npm install -g sfdx-cli | |
- run: sfdx plugins:install @salesforce/sfdx-scanner@latest-rc | |
# Log the installed plugins for easier debugging. | |
- run: sfdx plugins | |
# Attempt to run the smoke tests. | |
- run: smoke-tests/smoke-test${{ matrix.os.exe }} sfdx | |
# Upload the smoke test result as an artifact, so it's visible for later. | |
- uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: ${{ runner.os }}-smoke-test-results | |
path: smoke-test-results | |
# Step 4: Promote the release candidate to latest. | |
promote-to-latest: | |
needs: rc-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
npm dist-tag add @salesforce/sfdx-scanner@${{ github.event.release.tag_name || inputs.tag }} latest |