This repository was archived by the owner on Mar 31, 2026. It is now read-only.
Merge pull request #153 from Team-Neptune/dev #125
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: BuildRelease | |
| on: | |
| push: | |
| branches: | |
| - master | |
| defaults: | |
| run: | |
| working-directory: src | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - id: set-version | |
| run: | | |
| version=$(python -c 'import sys, json; f=open("./settings.json");print(json.loads(f.read())["releaseVersion"])') | |
| echo "version=$version" >> $GITHUB_OUTPUT | |
| - name: Set up hub | |
| run: | | |
| sudo apt install hub -y | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| if [ -f ../requirements.txt ]; then pip3 install -r ../requirements.txt; fi | |
| - name: Create DeepSea Packages | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| python ./start.py -gt="$GITHUB_TOKEN" | |
| - name: Create Release | |
| run: | | |
| set -x | |
| assets=() | |
| for asset in ./*.zip; do | |
| assets+=("-a" "$asset") | |
| done | |
| hub release create "${assets[@]}" -d -m "Release v${{ steps.set-version.outputs.version }}" "v${{ steps.set-version.outputs.version }}" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |