-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09cf0d8
commit c823909
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Update Downloads | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'content/**' | ||
|
||
jobs: | ||
update-downloads: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Notebooks repo | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install zip | ||
run: sudo apt-get install zip | ||
|
||
- name: Zip content directories | ||
run: | | ||
cd content | ||
for dir in week*; do | ||
zip -r "../$dir.zip" "$dir" -X -q -x "*.git*" | ||
done | ||
cd .. | ||
- name: Checkout Downloads repo | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: PythonFreeCourse/downloads | ||
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | ||
path: downloads | ||
|
||
- name: Copy zip files to Downloads repo | ||
run: | | ||
cp *.zip downloads/ | ||
- name: Commit and push changes | ||
run: | | ||
cd downloads | ||
git config user.name "${{ github.actor }}" | ||
git config user.email "${{ github.actor }}@users.noreply.github.com" | ||
git add -A . | ||
git commit -m "Update zip files by ${{ github.actor }}" || echo "No changes to commit" | ||
git push |