Skip to content

Bump @tailwindcss/forms from 0.5.4 to 0.5.5 (#54) #160

Bump @tailwindcss/forms from 0.5.4 to 0.5.5 (#54)

Bump @tailwindcss/forms from 0.5.4 to 0.5.5 (#54) #160

Workflow file for this run

name: Publish a Release Preview
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
with:
dev: no
php_version: "8.0"
- run: |
sudo apt-get install zip -y
zip -r AntCMS.zip .
working-directory: ./src
- run: |
npm install -D tailwindcss
rm -f ./src/Themes/Default/Assets/Dist/tailwind.css
npx tailwindcss -i ./src/Themes/Default/Assets/tailwind.css -o ./src/Themes/Default/Assets/Dist/tailwind.css --minify
- uses: ncipollo/release-action@v1
with:
artifacts: "./src/AntCMS.zip"
prerelease: true
allowUpdates: true
artifactErrorsFailBuild: true
generateReleaseNotes: true
name: "Preview Build"
tag: "latest-preview"
body: "A rolling preview release of AntCMS that is updated with each commit."