Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions .github/workflows/canary.yml

This file was deleted.

106 changes: 106 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
name: Publish Package

on:
push:
branches:
- main
issue_comment:
types:
- created

permissions:
id-token: write
contents: write

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
get-branch:
if: github.event_name == 'issue_comment' && github.event.issue.pull_request && (github.event.comment.body == 'canary-publish' || github.event.comment.body == '/canary-publish' || github.event.comment.body == 'rc-publish' || github.event.comment.body == '/rc-publish')
runs-on: ubuntu-latest
outputs:
branch: ${{ steps.get_branch.outputs.branch }}
steps:
- name: Get PR branch name
id: get_branch
run: |
PR=$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" ${{ github.event.issue.pull_request.url }})
branch=$(echo "$PR" | jq -r '.head.ref')
echo "branch=$branch" >> "$GITHUB_OUTPUT"

publish:
runs-on: ubuntu-latest
needs: [get-branch]
if: |
always() &&
(github.event_name == 'push' ||
(github.event_name == 'issue_comment' && needs.get-branch.result == 'success'))
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
ref: ${{ needs.get-branch.outputs.branch || github.ref }}
token: ${{ secrets.ACTION_TOKEN }}
fetch-depth: 0

- uses: pnpm/action-setup@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'

- name: Check and upgrade npm
run: |
echo "Current npm version:"
npm --version
npm install -g npm@latest
echo "Upgraded npm version:"
npm --version
Comment on lines +54 to +60
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I forgot to add this step in device-info 😮 !! (minimum npm@11.5.1)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since I was using Node 22, I naturally assumed it would come with npm 11… I ended up wasting way too much time because of this. lol


- name: Install Dependencies
run: pnpm install --frozen-lockfile

- name: Build package
run: pnpm run build

- name: Publish - Release
if: github.event_name == 'push'
uses: NaverPayDev/changeset-actions/publish@main
with:
github_token: ${{ secrets.ACTION_TOKEN }}
git_username: npayfebot
git_email: npay.fe.bot@navercorp.com
publish_script: pnpm release
pr_title: '🚀 version changed packages'
commit_message: '📦 bump changed packages version'
create_github_release_tag: true
formatting_script: pnpm run markdownlint:fix
env:
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}

- name: Publish - Canary
if: github.event_name == 'issue_comment' && (github.event.comment.body == 'canary-publish' || github.event.comment.body == '/canary-publish')
uses: NaverPayDev/changeset-actions/canary-publish@main
with:
github_token: ${{ secrets.ACTION_TOKEN }}
npm_tag: canary
publish_script: pnpm run release:canary
packages_dir: '.'
excludes: '.turbo,.github'
version_template: '{VERSION}-canary.{DATE}-{COMMITID7}'

- name: Publish - RC
if: github.event_name == 'issue_comment' && (github.event.comment.body == 'rc-publish' || github.event.comment.body == '/rc-publish')
uses: NaverPayDev/changeset-actions/canary-publish@main
with:
github_token: ${{ secrets.ACTION_TOKEN }}
npm_tag: rc
publish_script: pnpm run release:canary
packages_dir: '.'
excludes: '.turbo,.github'
version_template: '{VERSION}-rc.{DATE}-{COMMITID7}'
create_release: true
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53 changes: 0 additions & 53 deletions .github/workflows/rc.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/release.yaml

This file was deleted.