Skip to content

Commit 73a8620

Browse files
style: fix lint errors (#29)
1 parent 69e07e5 commit 73a8620

2 files changed

Lines changed: 15 additions & 6 deletions

File tree

.github/workflows/scheduler.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,22 @@ jobs:
4444
- name: Setup env
4545
run: |
4646
# sponsors
47-
echo "CONTRIBKIT_GITHUB_TOKEN=${{ secrets.GH_BOT_TOKEN }}" >> ./configs/sponsors/.env
48-
echo "CONTRIBKIT_GITHUB_LOGIN=${{ github.repository_owner }}" >> ./configs/sponsors/.env
49-
echo "CONTRIBKIT_PATREON_TOKEN=${{ secrets.PATREON_CREATOR_TOKEN }}" >> ./configs/sponsors/.env
47+
{
48+
echo "CONTRIBKIT_GITHUB_TOKEN=${{ secrets.GH_BOT_TOKEN }}"
49+
echo "CONTRIBKIT_GITHUB_LOGIN=${{ github.repository_owner }}"
50+
echo "CONTRIBKIT_PATREON_TOKEN=${{ secrets.PATREON_CREATOR_TOKEN }}"
51+
} >> ./configs/sponsors/.env
5052
5153
# crowdin contributors
52-
echo "CONTRIBKIT_CROWDIN_TOKEN=${{ secrets.CROWDIN_TOKEN }}" >> ./configs/crowdin/.env
54+
{
55+
echo "CONTRIBKIT_CROWDIN_TOKEN=${{ secrets.CROWDIN_TOKEN }}"
56+
} >> ./configs/crowdin/.env
5357
5458
# github contributors
55-
echo "CONTRIBKIT_GITHUB_CONTRIBUTORS_TOKEN=${{ secrets.GH_BOT_TOKEN }}" >> ./configs/github/.env
56-
echo "CONTRIBKIT_GITHUB_CONTRIBUTORS_LOGIN=${{ github.repository_owner }}" >> ./configs/github/.env
59+
{
60+
echo "CONTRIBKIT_GITHUB_CONTRIBUTORS_TOKEN=${{ secrets.GH_BOT_TOKEN }}"
61+
echo "CONTRIBKIT_GITHUB_CONTRIBUTORS_LOGIN=${{ github.repository_owner }}"
62+
} >> ./configs/github/.env
5763
5864
- name: Setup dist
5965
run: |

build.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
#!/usr/bin/env bash
2+
set -e
3+
14
repos=(
25
"build-deps"
36
"contribkit"

0 commit comments

Comments
 (0)