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 b4765f3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,11 @@ 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:
- name: 📑 Get changed files
uses: jitterbit/get-changed-files@v1
id: files
Expand Down

0 comments on commit b4765f3

Please sign in to comment.