Skip to content

v0fix: fixed the tailwind import issues in the demo #63

v0fix: fixed the tailwind import issues in the demo

v0fix: fixed the tailwind import issues in the demo #63

Workflow file for this run

name: Release
on:
push:
branches: [ master, alpha, beta, build ]
repository_dispatch:
types: [ release ]
permissions:
id-token: write
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["lts/*"]
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v6
- name: Setup
uses: alanscodelog/actions/.github/actions/setup@master
with:
USE_LOCKFILE: ${{ vars.USE_LOCKFILE }}
- name: Build
uses: alanscodelog/actions/.github/actions/build@master
- name: Release
uses: alanscodelog/actions/.github/actions/release@master
with:
ENABLE_RELEASE: ${{ vars.ENABLE_RELEASE == 'true' && github.ref != 'refs/heads/build' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}