Update @types/react to version 19.0.2 (#61) #46
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: Build & Deploy via ftp | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
outputs: | |
fullSemVer: ${{ steps.gitversion.outputs.fullSemVer }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install GitVersion | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
versionSpec: "6.x" | |
- name: Determine Version | |
id: gitversion | |
uses: gittools/actions/gitversion/[email protected] | |
with: | |
useConfigFile: true | |
- name: Set up Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm test | |
# - name: Upload build | |
# uses: sebastianpopp/ftp-action@releases/v2 | |
# with: | |
# host: ${{ secrets.FTP_SERVER }} | |
# user: ${{ secrets.FTP_USERNAME }} | |
# password: ${{ secrets.FTP_PASSWORD }} | |
# localDir: "dist/" | |
# remoteDir: "/" | |
create_release: | |
name: Create release | |
needs: build | |
runs-on: ubuntu-latest | |
env: | |
fullSemVer: ${{ needs.build.outputs.fullSemVer }} | |
steps: | |
- name: Create Release | |
uses: ncipollo/[email protected] | |
with: | |
skipIfReleaseExists: true | |
allowUpdates: false | |
draft: false | |
makeLatest: true | |
tag: v${{ env.fullSemVer }} | |
name: Release v${{ env.fullSemVer }} | |
generateReleaseNotes: true | |
body: Release ${{ env.fullSemVer }} of ${{ github.repository }} |