mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
parent
d60f990b09
commit
1b87123023
35
.github/workflows/test.yml
vendored
35
.github/workflows/test.yml
vendored
@ -268,3 +268,38 @@ jobs:
|
||||
- name: test e2e
|
||||
run: yarn test:e2e
|
||||
needs: build
|
||||
|
||||
release-commit:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
if: github.event_name == 'push' && contains(github.event.head_commit.message, '[release]')
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
node: [12]
|
||||
|
||||
steps:
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
|
||||
- name: restore workspace cache
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ${{ github.workspace }}
|
||||
key: ${{ matrix.os }}-node-v${{ matrix.node }}-nuxt-${{ github.sha }}
|
||||
|
||||
- name: bump version
|
||||
run: yarn lerna version --yes --no-git-tag-version --no-push
|
||||
|
||||
- name: build
|
||||
run: PACKAGE_SUFFIX=edge yarn build
|
||||
|
||||
- name: publish
|
||||
run: |
|
||||
if [ "$ref" = "refs/heads/next" ]; then tag="--tag next"; fi
|
||||
./scripts/workspace-run npm publish -q
|
||||
env:
|
||||
ref: ${{ github.ref }}
|
||||
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
|
||||
needs: [lint-app, test-dev, test-unit, test-e2e]
|
||||
|
Loading…
Reference in New Issue
Block a user