Skip to content

Add 542, 543

Add 542, 543 #58

Workflow file for this run

name: Release
on:
- push
jobs:
build:
runs-on: ubuntu-latest
permissions:
actions: read
contents: write
strategy:
matrix:
node-version:
- "20"
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm t
- run: npm run format
- name: commit auto fixes
env:
USERNAME: ${{ github.actor }}
BRANCH: ${{ github.ref_name }}
REPO: ${{ github.repository }}
run: |
if [ "$(git diff --quiet && echo 0 || echo $?)" -gt 0 ]; then
git commit -am "😎 Autofix"
git push origin $BRANCH
exit 1
fi
- name: Build and Publish
if: github.ref == 'refs/heads/main'
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
npx @lets/publish