Skip to content

Commit

Permalink
Separate the notify steps in a different job
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmbl committed Nov 17, 2023
1 parent 9313d63 commit 90e7cc7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,16 @@ jobs:
run: |
rsync --archive --stats --verbose --delete ./build/blog/* ${{ secrets.CI_USER_NAME }}@iscsc.fr:${{ secrets.STATIC_WEBSITE_PATH}}
# Finally notify of the new article (if any) on the iScsc discord server
# Finally notify of the new article (if any) on the iScsc discord server
notify:
needs: [deploy]
runs-on: ubuntu-latest
steps:
# Checkout repo, no need to checkout submodule
- name: 🛒 Checkout
uses: actions/checkout@v3

# Get the list of added, changed, removed, and renamed files
- name: 📑 Get changed files
uses: jitterbit/get-changed-files@v1
id: files
Expand Down

0 comments on commit 90e7cc7

Please sign in to comment.