Merge branch 'dev' #10
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: Version Check and Release Creating | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
version-check: | |
runs-on: ubuntu-latest | |
outputs: | |
changed: ${{ steps.version.outputs.changed }} | |
version: ${{ steps.version.outputs.version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check for Version Update | |
id: version | |
uses: EndBug/[email protected] | |
with: | |
file-url: https://unpkg.com/@rnbws/renecss/package.json | |
static-checking: localIsNew | |
create-release: | |
needs: version-check | |
if: needs.version-check.outputs.changed == 'true' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create Tag and GitHub Release | |
if: needs.version-check.outputs.changed == 'true' | |
uses: actions/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACTIONS_TOKEN }} | |
with: | |
tag_name: v${{ needs.version-check.outputs.version }} | |
release_name: Release v${{ needs.version-check.outputs.version }} |