Skip to content

Refactor French translations in containerization blog posts #59

Refactor French translations in containerization blog posts

Refactor French translations in containerization blog posts #59

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- master
workflow_dispatch:
permissions:
id-token: write
contents: write
pages: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
container:
image: node:18
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
yarn install --frozen-lockfile --non-interactive
apt update && apt install -y rsync
- name: Build
run: yarn build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build
clean-exclude: pr-preview/
force: false
git-config-email: [email protected]
git-config-name: GitHub Actions