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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deployment
name: Release

on:
push:
Expand Down Expand Up @@ -32,9 +32,13 @@ jobs:
- 'src/**/*.ts'
- 'src/**/*.tsx'
- 'tsup.config.ts'
- '.github/workflows/release.yml'

deploy:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
needs: check-changes
if: ${{ needs.check-changes.outputs.changed == 'true' }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions src/docs/en/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ All `react-simplikit` implementations use special rendering functions to verify

:::

### Deployment
### Release

When changes are merged into the `main` branch, deployment happens automatically. You can view the deployment results in [GitHub Actions](https://github.com/toss/react-simplikit/actions).
When changes are merged into the `main` branch, release happens automatically. You can view the release results in [GitHub Actions](https://github.com/toss/react-simplikit/actions).

## Documentation Contribution

Expand Down
Loading