Skip to content

Commit bd26eac

Browse files
authored
chore: fix prerelease tags
Fix Prerelease Tags
2 parents 96a13e6 + d1c5d24 commit bd26eac

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,13 @@ jobs:
4848
run: yarn lint
4949

5050
- name: Publish
51-
run: npx semantic-release -r $GITHUB_SERVER_URL/$GITHUB_REPOSITORY
51+
run: npx semantic-release
5252
env:
53+
NODE_ENV: "cicd"
5354
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
55+
NPM_TOKEN: ${{secrets.npm_token}}
5456
GITHUB_TOKEN: ${{secrets.gh_token}}
5557
GIT_AUTHOR_NAME: "autocloud-deploy-bot"
5658
GIT_AUTHOR_EMAIL: "no-reply@autocloud.dev"
5759
GIT_COMMITTER_NAME: "autocloud-deploy-bot"
5860
GIT_COMMITTER_EMAIL: "no-reply@autocloud.dev"
59-
NODE_ENV: "cicd"

.releaserc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
---
22
branches:
33
- name: alpha
4+
channel: alpha
5+
prerelease: true
46
- name: beta
7+
channel: beta
8+
prerelease: true
59
- name: main
610

711
plugins:

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"description": "cloud-graph provider plugin for Oracle Cloud used to fetch OCI cloud data.",
55
"publishConfig": {
66
"registry": "https://registry.npmjs.org/",
7-
"tag": "latest",
87
"access": "public"
98
},
109
"homepage": "https://www.cloudgraph.dev/",

0 commit comments

Comments
 (0)