Skip to content

style: add stylish bottom border to primary buttons #20

style: add stylish bottom border to primary buttons

style: add stylish bottom border to primary buttons #20

Workflow file for this run

on:
push:
branches:
- main
name: Deploy ORS
jobs:
web-deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Get latest code
uses: actions/checkout@v3
- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: "8.2"
command: install --no-dev --ignore-platform-req=ext-intl
- name: Sync files
uses: SamKirkland/[email protected]
with:
server: ${{ secrets.FTP_HOST }}
username: ${{ secrets.FTP_USER }}
password: ${{ secrets.FTP_PASSWORD }}
server-dir: ./htdocs/
exclude: |
.git*
.git*/**
.github*
.github/**
.vscode*
.vscode/**
tests*
tests/**
.env
.gitpod.yml
.phpunit.result.cache
builds
preload.php
starter.ini
- name: Run Migrations
id: getRequest
uses: skgandikota/[email protected]
with:
url: "https://ors-zqetri23.isaac.co.zw/sys/re-install"
- name: Get Migration Results
run: |
echo status: "${{ steps.getRequest.outputs.status }}"
echo date: ${{ (fromJSON(steps.getRequest.outputs.headers)).date[0] }}
echo responseBody: "${{ steps.getRequest.outputs.body }}"