Eng - Build and Deploy #722
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Eng - Build and Deploy | |
on: | |
workflow_dispatch: | |
schedule: | |
# Here are the times for the cron: | |
# | |
# Sun, Mon, Tue, Thu, Fri : at 00:00, 03:00, 06:00, 09:00, 12:00, 15:00, 18:00, 21:00 UTC | |
# Wed, Sat : at --:--, --:--, 06:00, 09:00, 12:00, 15:00, 18:00, 21:00 UTC | |
# | |
# There is a 6 hour maintenance window on Wednesdays and Saturdays, | |
# and the crons are scheduled at 5 mins past the hour. | |
# | |
- cron: '5 0,3,6,9,12,15,18,21 * * 0-2,4-5' | |
- cron: '5 6,9,12,15,18,21 * * 3,6' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18.x] | |
languages: [english] | |
site_tlds: [org] | |
env: | |
BUILD_LANG: ${{ matrix.languages }} | |
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }} | |
ALGOLIA_APP_ID: ${{ secrets.ALGOLIA_APP_ID }} | |
CHAT_WEBHOOK_KEY: ${{ secrets.CHAT_WEBHOOK_KEY }} | |
CHAT_WEBHOOK_TOKEN: ${{ secrets.CHAT_WEBHOOK_TOKEN }} | |
ENGLISH_GHOST_API_URL: ${{ secrets.ENGLISH_GHOST_API_URL }} | |
ENGLISH_GHOST_API_VERSION: ${{ secrets.ENGLISH_GHOST_API_VERSION }} | |
ENGLISH_GHOST_CONTENT_API_KEY: ${{ secrets.ENGLISH_GHOST_CONTENT_API_KEY }} | |
ADS_ENABLED: ${{ secrets.ADS_ENABLED }} | |
GOOGLE_ADSENSE_DATA_AD_CLIENT: ${{ secrets.GOOGLE_ADSENSE_DATA_AD_CLIENT }} | |
GOOGLE_ADSENSE_DATA_AD_SLOT: ${{ secrets.GOOGLE_ADSENSE_DATA_AD_SLOT }} | |
HASHNODE_API_URL: ${{ secrets.HASHNODE_API_URL }} | |
ENGLISH_HASHNODE_HOST: ${{ secrets.ENGLISH_HASHNODE_HOST }} | |
POSTS_PER_PAGE: ${{ secrets.POSTS_PER_PAGE }} | |
SITE_DOMAIN: freecodecamp.${{ matrix.site_tlds }} | |
LOCALE_FOR_UI: ${{ matrix.languages }} | |
LOCALE_FOR_GHOST: ${{ matrix.languages }} | |
DO_NOT_FETCH_FROM_GHOST: true | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: | | |
npm ci | |
- name: Build site | |
run: npm run build | |
env: | |
NODE_ENV: production | |
- name: Create a tagname | |
id: tagname | |
run: | | |
echo "tagname=$(git rev-parse --short HEAD)-$(date +%Y%m%d)-$(date +%H%M)" >> $GITHUB_ENV | |
- name: Build & Tag Images | |
run: | | |
docker build . \ | |
--tag registry.digitalocean.com/${{ secrets.DOCR_NAME }}/${{ matrix.site_tlds }}/news-${{ matrix.languages }}:$tagname \ | |
--tag registry.digitalocean.com/${{ secrets.DOCR_NAME }}/${{ matrix.site_tlds }}/news-${{ matrix.languages }}:latest \ | |
--build-arg BUILD_LANGUAGE=${{ matrix.languages }} \ | |
--file docker/Dockerfile | |
- name: Install doctl | |
uses: digitalocean/action-doctl@v2 | |
with: | |
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | |
- name: Log in to DigitalOcean Container Registry with short-lived credentials | |
run: doctl registry login --expiry-seconds 1200 | |
- name: Push image to DigitalOcean Container Registry | |
run: | | |
docker push registry.digitalocean.com/${{ secrets.DOCR_NAME }}/${{ matrix.site_tlds }}/news-${{ matrix.languages }}:$tagname | |
docker push registry.digitalocean.com/${{ secrets.DOCR_NAME }}/${{ matrix.site_tlds }}/news-${{ matrix.languages }}:latest | |
# - name: Clean up Self-hosted setup | |
# uses: colpal/actions-clean@36e6ca1abd35efe61cb60f912bd7837f67887c8a # tag=v1 | |
# if: ${{ always() }} # To ensure this step runs even when earlier steps fail | |
# Deployments are automated via https://github.com/freeCodeCamp/news-docker-swarm-config |