/
githubmirror
/
wtfjs
Обзор
Документация
Войти
/
githubmirror
/
wtfjs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/release.yml
36 строк
777 B
Denys Dovhan
chore: format all files
26 апр 2022, 17:05
Не верифицирован
26 апр 2022, 17:05
494cab5
Код
Авторство
О чём код?
name: Release on: push: branches: - master jobs: release: name: Prepare release runs-on: ubuntu-latest steps: - name: 🛑 Cancel Previous Runs uses: styfle/cancel-workflow-action@0.9.1 - name: ⬇️ Checkout Repo uses: actions/checkout@v3 - name: ⬢ Setup Node.js uses: actions/setup-node@v3 with: node-version: "*" cache: npm - name: 📦 Install Packages run: npm ci - name: 📝 Generate TOC run: npm run toc - name: 💅 Format files run: npm run format - name: 🚀 Release run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}