Skip to content

Commit

Permalink
Update changelog, fix release workflow, re-sync package-lock
Browse files Browse the repository at this point in the history
  • Loading branch information
Reckless-Satoshi committed May 29, 2023
1 parent 230123c commit f3a7701
Show file tree
Hide file tree
Showing 6 changed files with 1,274 additions and 4,318 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/django-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 'Install LND gRPC Dependencies'
run: bash generate_grpc.sh
run: bash ./scripts/generate_grpc.sh
- name: 'Create .env File'
run: |
mv .env-sample .env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lnproxy-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Fetch and process lnproxy relay JSON file
run: |
curl https://raw.githubusercontent.com/lnproxy/lnproxy-webui2/main/assets/relays.json -o lnproxy_tmplist.json
node .github/workflows/scripts/lnproxy-sync.js
node ./scripts/lnproxy-sync.js
git add ./frontend/static/lnproxies.json
- name: Remove tmp lnproxy json file
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ on:
tags:
- "v*.*.*"

permissions: write-all

jobs:
check-versions:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -36,9 +38,9 @@ jobs:
fi
django-test:
uses: RoboSats/robosats/.github/workflows/django-test.yml@main
needs: check-versions
# django-test:
# uses: RoboSats/robosats/.github/workflows/django-test.yml@main
# needs: check-versions

frontend-build:
uses: RoboSats/robosats/.github/workflows/frontend-build.yml@main
Expand All @@ -48,7 +50,7 @@ jobs:

coordinator-image:
uses: RoboSats/robosats/.github/workflows/coordinator-image.yml@main
needs: [django-test, frontend-build]
needs: [frontend-build] # django-test,
secrets: inherit
with:
semver: ${{ needs.check-versions.outputs.semver }}
Expand All @@ -67,8 +69,6 @@ jobs:
semver: ${{ needs.check-versions.outputs.semver }}

release:
permissions:
contents: write
needs: [check-versions, coordinator-image, client-image, android-build]
runs-on: ubuntu-latest
steps:
Expand Down
Loading

0 comments on commit f3a7701

Please sign in to comment.