Skip to content

feat: ajouter un workflow de publication et des tâches Gulp pour la g… #1

feat: ajouter un workflow de publication et des tâches Gulp pour la g…

feat: ajouter un workflow de publication et des tâches Gulp pour la g… #1

Workflow file for this run

name: Build and push
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v2
- name: install dep
run: bun install
- name: build
run: bun run publish
- name: commit and push new version
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add ./dist
git commit -m "Publish builded files"
git push origin HEAD:master