Skip to content

feat: use php 8.5 and drop redudant entrypoint #41

feat: use php 8.5 and drop redudant entrypoint

feat: use php 8.5 and drop redudant entrypoint #41

Workflow file for this run

name: CI Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Insert to demo database (using env)
uses: ./
env:
INPUT_MAPS: column1=value1;column2=value2;
INPUT_HOST: ${{ secrets.MYSQL_HOST }}
INPUT_PORT: ${{ secrets.MYSQL_PORT }}
INPUT_USER: ${{ secrets.MYSQL_USER }}
INPUT_PASS: ${{ secrets.MYSQL_PASS }}
INPUT_TABL: ${{ secrets.MYSQL_TABL }}
INPUT_DEBUG: true
- name: Insert to demo database (using with)
uses: ./
with:
maps: column1=value1;column2=value2;
host: ${{ secrets.MYSQL_HOST }}
port: ${{ secrets.MYSQL_PORT }}
user: ${{ secrets.MYSQL_USER }}
pass: ${{ secrets.MYSQL_PASS }}
tabl: ${{ secrets.MYSQL_TABL }}
debug: true