Bump dawidd6/action-download-artifact from 2 to 6 in /.github/workflo… #43
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: Open release | |
on: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Prepare release with Changesets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
# Tags are fetched for Changeset to distinguish from new ones while running `changeset tag` | |
- name: Git fetch tags | |
run: git fetch --tags origin | |
- name: Get PNPM version from package.json | |
id: pnpm-version | |
run: echo "pnpm_version=$(cat package.json | jq '.packageManager' | sed -E 's/[^0-9.]//g')" >> $GITHUB_OUTPUT | |
- name: Install PNPM | |
uses: pnpm/action-setup@v2 | |
with: | |
version: ${{ steps.pnpm-version.outputs.pnpm_version }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm --version && pnpm install --frozen-lockfile | |
- name: Create Release Pull Request | |
uses: changesets/action@v1 | |
id: changesets | |
with: | |
title: Release Authorize.net app | |
commit: Release Authorize.net app | |
publish: pnpm github:release | |
createGithubReleases: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |