Skip to content

feat: bring vite (#82) #13

feat: bring vite (#82)

feat: bring vite (#82) #13

name: bedrock-release

Check failure on line 1 in .github/workflows/bedrock-release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/bedrock-release.yaml

Invalid workflow file

you may only define one of `paths` and `paths-ignore` for a single event
on:
push:
branches:
- main
paths:
- bedrock/**
paths-ignore:
- bedrock/package-lock.json
jobs:
build-bedrock:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
sparse-checkout: bedrock
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org
- name: Install winglang
run: npm i -g winglang
- name: Install dependencies
run: npm install --include=dev
working-directory: bedrock
- name: Test
run: wing test
working-directory: bedrock
- name: Pack
run: wing pack
working-directory: bedrock
- name: Get package version
run: echo WINGLIB_VERSION=$(node -p "require('./package.json').version") >>
"$GITHUB_ENV"
working-directory: bedrock
- name: Publish
run: npm publish --access=public --registry https://registry.npmjs.org --tag
latest *.tgz
working-directory: bedrock
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Tag commit
uses: tvdias/[email protected]
with:
repo-token: ${{ secrets.PROJEN_GITHUB_TOKEN }}
tag: bedrock-v${{ env.WINGLIB_VERSION }}
- name: GitHub release
uses: softprops/action-gh-release@v1
with:
name: bedrock v${{ env.WINGLIB_VERSION }}
tag_name: bedrock-v${{ env.WINGLIB_VERSION }}
files: "*.tgz"
token: ${{ secrets.PROJEN_GITHUB_TOKEN }}