Skip to content

Commit

Permalink
Merge pull request #76 from freifunkMUC/ffmuc_v2024.3.0
Browse files Browse the repository at this point in the history
Update to upstream v2024.3.0
  • Loading branch information
krombel authored Mar 23, 2024
2 parents 3c7d8d8 + 1f858c5 commit 5e025a9
Show file tree
Hide file tree
Showing 4 changed files with 600 additions and 2,723 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
name: Linux
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
- name: Build it
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm ci
npm run lint
npm run dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: linux-binaries
path: |
Expand All @@ -40,10 +40,10 @@ jobs:
name: macOS
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
- name: Prepare for app signing and notarization
env:
API_KEY: ${{ secrets.api_key }}
Expand All @@ -63,7 +63,7 @@ jobs:
run: |
npm ci
npm run dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: mac-binaries
path: |
Expand All @@ -74,17 +74,17 @@ jobs:
name: Windows
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
node-version: '18'
- name: Build it
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm ci
npm run dist
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: windows-binaries
path: |
Expand Down
Loading

0 comments on commit 5e025a9

Please sign in to comment.