Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Autoupdate /downloads repo #66

Merged
merged 1 commit into from
Feb 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/update-downloads.yml
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