File tree Expand file tree Collapse file tree 2 files changed +25
-23
lines changed Expand file tree Collapse file tree 2 files changed +25
-23
lines changed Original file line number Diff line number Diff line change @@ -31,25 +31,25 @@ jobs:
31
31
- run : yarn
32
32
- run : yarn test
33
33
- run : yarn lint
34
- # deploy:
35
- # name: Deploy
36
- # runs-on: ubuntu-latest
37
- # needs: build-and-test
38
- # steps:
39
- # - name: Find yarn cache
40
- # id: find-yarn-cache
41
- # run: echo "::set-output name=dir::$(yarn cache dir)"
42
- # - name: git checkout
43
- # uses: actions/checkout@v2
44
- # - name: Cache yarn dependencies
45
- # uses: actions/cache@v1
46
- # with:
47
- # path: ${{steps.find-yarn-cache.outputs.dir}}
48
- # key: ${{runner.os}}-node${{env.DEPLOY_NODE_VERSION}}-yarn-${{hashFiles('**/yarn.lock')}}
49
- # restore-keys: ${{runner.os}}-node${{env.DEPLOY_NODE_VERSION}}-yarn-
50
- # - name: Set up Node.js
51
- # uses: actions/setup-node@v1
52
- # with:
53
- # node-version: ${{env.DEPLOY_NODE_VERSION}}
54
- # - run: yarn
55
- # - run: yarn semantic-release
34
+ deploy :
35
+ name : Deploy
36
+ runs-on : ubuntu-latest
37
+ needs : build-and-test
38
+ steps :
39
+ - name : Find yarn cache
40
+ id : find-yarn-cache
41
+ run : echo "::set-output name=dir::$(yarn cache dir)"
42
+ - name : git checkout
43
+ uses : actions/checkout@v2
44
+ - name : Cache yarn dependencies
45
+ uses : actions/cache@v1
46
+ with :
47
+ path : ${{steps.find-yarn-cache.outputs.dir}}
48
+ key : ${{runner.os}}-node${{env.DEPLOY_NODE_VERSION}}-yarn-${{hashFiles('**/yarn.lock')}}
49
+ restore-keys : ${{runner.os}}-node${{env.DEPLOY_NODE_VERSION}}-yarn-
50
+ - name : Set up Node.js
51
+ uses : actions/setup-node@v1
52
+ with :
53
+ node-version : ${{env.DEPLOY_NODE_VERSION}}
54
+ - run : yarn
55
+ - run : yarn semantic-release
Original file line number Diff line number Diff line change 1
1
{
2
- "private" : true ,
3
2
"name" : " resolve-typescript-plugin" ,
4
3
"version" : " 0.0.0-development" ,
5
4
"description" : " webpack plugin to resolve TypeScript files when importing with js file extension in ESM projects" ,
62
61
},
63
62
"release" : {
64
63
"extends" : " @softwareventures/semantic-release-config"
64
+ },
65
+ "publishConfig" : {
66
+ "access" : " public"
65
67
}
66
68
}
You can’t perform that action at this time.
0 commit comments