Compare commits

..

3 Commits

Author SHA1 Message Date
Leithen 0d6a64e046
bump actions/download-artifact from 3 to 4. Fix bug with README.md file failing to download. (#11754) 2 weeks ago
Godwin Odenigbo 8a0ccd9c2d
Added building microservices with GO tutorial (#11753) 2 weeks ago
Godwin Odenigbo 08e0e6743c
Added "Nest.js Crash Course Tutorial on Youtube By Net Ninja With Marius Espejo" (#11752) 2 weeks ago
  1. 22
      .github/workflows/check-urls.yml
  2. 2
      courses/free-courses-en.md

@ -86,13 +86,26 @@ jobs:
gem install awesome_bot gem install awesome_bot
- name: Set output - name: Set output
id: set-output id: set-output
run: echo "FILENAME=$(echo ${{ matrix.file }} | grep -oE '[a-zA-Z0-9_-]+(\.yml|\.md)')" >> "$GITHUB_OUTPUT" # FILENAME takes the complete file path and strips everything before the final '/'
# FILEPATH replaces all '/' with '-' in the file path since '/' is not allowed in upload artifact name
# Due to a bug in actions/download-artifact, we need to rename README.md to BASE_README.md
run: |
echo "FILENAME=$(echo ${{ matrix.file }} | grep -oE '[a-zA-Z0-9_-]+(\.yml|\.md)')" >> "$GITHUB_OUTPUT"
file_path="${{ matrix.file }}"
file_path="${file_path//\//-}"
if [[ "$file_path" == "README.md" ]]; then
file_path="BASE_README.md"
fi
echo "FILEPATH=${file_path}" >> "$GITHUB_OUTPUT"
- name: "Check URLs of file: ${{ matrix.file }}" - name: "Check URLs of file: ${{ matrix.file }}"
run: | run: |
awesome_bot "${{ matrix.file }}" --allow-redirect --allow-dupe --allow-ssl || true; awesome_bot "${{ matrix.file }}" --allow-redirect --allow-dupe --allow-ssl || true;
- uses: actions/upload-artifact@v4 - uses: actions/upload-artifact@v4
with: with:
name: ${{ steps.set-output.outputs.FILENAME}} name: ${{ steps.set-output.outputs.FILEPATH }}
path: ${{ github.workspace }}/ab-results-*.json path: ${{ github.workspace }}/ab-results-*.json
@ -104,9 +117,8 @@ jobs:
- name: Checkout # for having the sources of the local action - name: Checkout # for having the sources of the local action
uses: actions/checkout@v4 uses: actions/checkout@v4
# download and unzip the ab-results-*.json generated by job-matrix: check-urls # download and unzip the ab-results-*.json generated by job-matrix: check-urls
- uses: actions/download-artifact@v3 - name: Download artifacts
with: uses: actions/download-artifact@v4
name: ${{ steps.set-output.outputs.FILENAME}}
- name: Generate Summary Report - name: Generate Summary Report
uses: ./.github/actions/awesomebot-gh-summary-action uses: ./.github/actions/awesomebot-gh-summary-action
with: with:

@ -799,6 +799,7 @@
### Go ### Go
* [A Tour Of Go](https://tour.golang.org/welcome/1) * [A Tour Of Go](https://tour.golang.org/welcome/1)
* [Building Microservices with Go](https://www.youtube.com/playlist?list=PLmD8u-IFdreyh6EUfevBcbiuCKzFk0EW_)
* [DevOps BootCamp](https://github.com/jeffotoni/goworkshopdevops) - Jefferson Otoni Lima, et al. * [DevOps BootCamp](https://github.com/jeffotoni/goworkshopdevops) - Jefferson Otoni Lima, et al.
* [Go / Golang Crash Course](https://www.youtube.com/watch?v=SqrbIlUwR0U) - Traversy Media * [Go / Golang Crash Course](https://www.youtube.com/watch?v=SqrbIlUwR0U) - Traversy Media
* [Go Programming Language Tutorial](https://www.youtube.com/playlist?list=PLS1QulWo1RIaRoN4vQQCYHWDuubEU8Vij) - ProgrammingKnowledge * [Go Programming Language Tutorial](https://www.youtube.com/playlist?list=PLS1QulWo1RIaRoN4vQQCYHWDuubEU8Vij) - ProgrammingKnowledge
@ -1092,6 +1093,7 @@
### Nest.js ### Nest.js
* [Learn NestJS – Complete Course](https://www.youtube.com/watch?v=sFnAHC9lLaw) - freeCodeCamp * [Learn NestJS – Complete Course](https://www.youtube.com/watch?v=sFnAHC9lLaw) - freeCodeCamp
* [Nest.js Crash Course](https://www.youtube.com/playlist?list=PL4cUxeGkcC9g8YFseGdkyj9RH9kVs_cMr) - Net Ninja
* [NestJs](https://www.youtube.com/playlist?list=PLlaDAvA2MhR2jb8zavu6I-w1BA878aHcB) - Marius Espejo * [NestJs](https://www.youtube.com/playlist?list=PLlaDAvA2MhR2jb8zavu6I-w1BA878aHcB) - Marius Espejo

Loading…
Cancel
Save