Skip to content

Commit

Permalink
chore: Create build-via-bumped-version action
Browse files Browse the repository at this point in the history
  • Loading branch information
junghyeonsu committed Dec 4, 2023
1 parent 376e559 commit 007f647
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-via-bumped-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
on:
push:
branches:
- 'changeset-release/main'

name: Build via bumped version

jobs:
build:
name: Build via bumped version
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18

- name: Install Packages
run: |
yarn install
- name: Git Config
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "GitHub Action"
- name: Generate Stuffs
run: |
yarn generate:icona
git add .
git commit -m "Generate Files via Bumped Version"
git push

0 comments on commit 007f647

Please sign in to comment.