diff --git a/.github/workflows/cloudfront-api-cache.yml b/.github/workflows/cloudfront-api-cache.yml index b0788304b..fc8a584c7 100644 --- a/.github/workflows/cloudfront-api-cache.yml +++ b/.github/workflows/cloudfront-api-cache.yml @@ -2,7 +2,7 @@ name: Clears API Cloudfront Cache on: workflow_dispatch: jobs: - aws_costs: + cloudfront_api_cache: runs-on: ubuntu-latest steps: - name: Clear Cloudfront Caching diff --git a/.github/workflows/cloudfront-fe-cache.yml b/.github/workflows/cloudfront-fe-cache.yml index 35e3e841a..0f69e825a 100644 --- a/.github/workflows/cloudfront-fe-cache.yml +++ b/.github/workflows/cloudfront-fe-cache.yml @@ -2,7 +2,7 @@ name: Clears Frontend Cloudfront Cache on: workflow_dispatch: jobs: - aws_costs: + cloudfront_fe_cache: runs-on: ubuntu-latest steps: - name: Clear Cloudfront Caching diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 15af6d06b..e9bb29fef 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -38,7 +38,8 @@ jobs: - name: Generate Production Build run: | git clone https://${{ secrets.GH_PAT }}@github.com/roadmapsh/web-draw.git .temp/web-draw --depth 1 - # npm run compress:images + npm run generate-renderer + npm run compress:images npm run build # -------------------- diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml deleted file mode 100644 index 7b0b36d0b..000000000 --- a/.github/workflows/greetings.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: ❤️ Greetings - -on: - issues: - types: [opened] - pull_request_target: - branches: [master] - types: [opened] - -jobs: - greet: - name: Greet New Contributors - runs-on: ubuntu-latest - steps: - - uses: actions/first-interaction@v1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - pr-message: | - Thank you for your first ever contribution to [roadmap.sh](https://roadmap.sh)! 🎉 - - Please make sure to follow the [contribution guidelines](https://github.com/kamranahmedse/developer-roadmap/blob/master/contributing.md) when contributing to this project. Any PRs that don't follow the guidelines will be closed. - - Thanks for choosing to contribute, and for helping make this project better! 🌟 \ No newline at end of file