Skip to content

Commit

Permalink
cleanup: Add GitHub Token
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Apr 27, 2024
1 parent b97926d commit 1b3e1c9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/weekly-release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Weekly Release

on:
workflow_dispatch:
schedule:
- cron: '0 16 * * 6'
workflow_dispatch:
schedule:
- cron: "0 16 * * 6"

env:
token: ${{ secrets.GITHUB_TOKEN }}

jobs:
release:
Expand All @@ -20,7 +23,7 @@ jobs:

- name: Remove version suffix
run: |
sed -i 's/"version": "\([0-9]\+\.[0-9]\+\.[0-9]\+\)-[0-9]\+",/"version": "\1",/g' package.json
sed -i 's/"version": "\([0-9]\+\.[0-9]\+\.[0-9]\+\)-[0-9]\+",/"version": "\1",/g' package.json
- name: Update CHANGELOG.md
run: |
Expand Down

0 comments on commit 1b3e1c9

Please sign in to comment.