Skip to content

Bump symfony/yaml from 6.4.7 to 6.4.8 (#128) #236

Bump symfony/yaml from 6.4.7 to 6.4.8 (#128)

Bump symfony/yaml from 6.4.7 to 6.4.8 (#128) #236

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@v4
- uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Install NPM packages and build frontend
run: |
npm i
npm run build
- uses: php-actions/composer@v6
with:
dev: no
php_version: "8.1"
args: "--optimize-autoloader"
- run: |
sudo apt-get install zip -y
sudo rm -rf ./Vendor/liborm85/composer-vendor-cleaner
zip -r AntCMS.zip .
working-directory: ./src
- 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."