Skip to content

[ru] fix: Typo in CLI (#388) #28

[ru] fix: Typo in CLI (#388)

[ru] fix: Typo in CLI (#388) #28

Workflow file for this run

name: Build and deploy translation status to Github Pages
on:
push:
branches:
- develop
paths:
- Language/**
- tests/Language/AbstractTranslationTestCase.php
- .github/workflows/generate-page.yml
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
if: github.repository == 'codeigniter4/translations'
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
extensions: intl, mbstring
coverage: none
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV
- name: Cache composer dependencies
uses: actions/cache@v3
with:
path: ${{ env.COMPOSER_CACHE_FILES_DIR }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer update --ansi
- name: Setup Pages
id: pages
uses: actions/configure-pages@v2
- name: Build
run: ./bin/generate-page
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./page/build
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1