Skip to content

Commit

Permalink
Update buildRelease.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Slluxx committed Apr 3, 2022
1 parent f24fb62 commit 0d2764b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/buildRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- id: set-version
run: |
version=$(python -c 'import sys, json; f=open("./src/settings.json");print(json.loads(f.read())["releaseVersion"])')
version=$(python -c 'import sys, json; f=open("./settings.json");print(json.loads(f.read())["releaseVersion"])')
echo "::set-output name=version::$version"
- name: Set up Python 3.9
Expand All @@ -28,13 +28,13 @@ jobs:

- name: Install dependencies
run: |
if [ -f ./requirements.txt ]; then pip3 install -r ./requirements.txt; fi
if [ -f ../requirements.txt ]; then pip3 install -r ../requirements.txt; fi
- name: Create DeepSea Packages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
python ./src/start.py -gt="$GITHUB_TOKEN"
python ./start.py -gt="$GITHUB_TOKEN"
- name: Create Release
run: |
Expand Down

0 comments on commit 0d2764b

Please sign in to comment.