Skip to content

Update time.md

Update time.md #38

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: true
- name: Setup PHP 🔧
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
extensions: mbstring
coverage: none
tools: composer:v2
- name: Install and Build 🔧
run: |
composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist
npm install
npm run prod
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: build
FOLDER: build_production