Bump sass from 1.79.3 to 1.79.4 (#178) #281
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." |