feat: v1.3.4 #4
This file contains hidden or 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 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build-and-release: | |
| name: Build Project and Create Release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| - name: Node | |
| uses: actions/[email protected] | |
| with: | |
| node-version: "20.19.6" | |
| - name: Install | |
| run: npm install | |
| - name: Build Server | |
| run: npm run build:server | |
| - name: Get version | |
| id: read_version | |
| run: | | |
| VERSION=$(jq -r '.version' package.json) | |
| echo "version=$VERSION" >> $GITHUB_OUTPUT | |
| - name: Update version in manifest file | |
| run: | | |
| sed -i "s/version=0.0.1/version=${{ steps.read_version.outputs.version }}/" app/manifest | |
| - name: Get changelog | |
| id: read_log | |
| run: | | |
| VERSION=$(jq -r '.changelog' package.json) | |
| echo "changelog=$CHANGELOG" >> $GITHUB_OUTPUT | |
| - name: Update changelog in manifest file | |
| run: | | |
| sed -i "s/changelog=changelog/changelog=${{ steps.read_version.outputs.changelog }}/" app/manifest | |
| - name: Build Package | |
| run: | | |
| chmod +x ./build/fnpack-1.0.4-linux-amd64 | |
| ./build/fnpack-1.0.4-linux-amd64 build app | |
| - name: Release | |
| uses: ncipollo/[email protected] | |
| with: | |
| tag: v${{ steps.read_version.outputs.version}} | |
| name: v${{ steps.read_version.outputs.version}} | |
| body: | | |
| [更新日志](https://github.com/FNOSP/App.Bin.CodeEditor/blob/main/CHANGELOG.md) | |
| artifacts: "code.editor.fpk" | |
| token: ${{ secrets.GITHUB_TOKEN }} |