Skip to content

Commit

Permalink
fix: disable substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
zyrafal authored Aug 21, 2024
1 parent 0a13430 commit 0a23113
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/add-sync-to-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: |
SYNC_CONTENT=$(cat .github/workflows/sync.yml)
echo "SYNC_CONTENT<<EOF" >> $GITHUB_ENV
echo "$SYNC_CONTENT" >> $GITHUB_ENV
echo '$SYNC_CONTENT' >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: List repositories updated in the last month
Expand All @@ -37,7 +37,7 @@ jobs:
branch_name="add-sync-script"
git checkout -b $branch_name
mkdir -p .github/workflows
echo "${{ env.SYNC_CONTENT }}" > .github/workflows/sync.yml
echo '${{ env.SYNC_CONTENT }}' > .github/workflows/sync.yml
git add .github/workflows/sync.yml
git commit -m "Add sync.yml workflow"
# git push origin $branch_name
Expand Down

0 comments on commit 0a23113

Please sign in to comment.