Skip to content

Commit

Permalink
fix: github actions release flow
Browse files Browse the repository at this point in the history
- remove the semantic release code and replace it with repo tagging.
- when the `package.json` version is updated, a new npm package is generated.
  • Loading branch information
sandroscosta committed Sep 17, 2024
1 parent 041bed2 commit 15966f8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ on:
push:
branches:
- master
- alpha
- nau/redwood.naster

jobs:
release:
name: Release
Expand Down Expand Up @@ -33,10 +34,15 @@ jobs:
uses: codecov/codecov-action@v3
- name: Build
run: npm run build
- name: Release
uses: cycjimmy/semantic-release-action@v3
- name: Release to npmjs
uses: pascalgn/npm-publish-action@1.3.9
with:
semantic_version: 16
tag_name: "v%s"
tag_message: "v%s"
commit_pattern: "^Release (\\S+)"
workspace: "."
publish_command: "npm"
publish_args: "--non-interactive"
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edx/frontend-component-header",
"version": "1.0.0-semantically-released",
"description": "The standard header for Open edX",
"name": "@nauedu/frontend-component-header",
"version": "18.0.0",
"description": "NAU footer component for Open edX",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
Expand All @@ -24,14 +24,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/openedx/frontend-component-header.git"
"url": "git+https://github.com/fccn/frontend-component-header-nau.git"
},
"author": "edX",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/openedx/frontend-component-header/issues"
"url": "https://github.com/fccn/frontend-component-header-nau/issues"
},
"homepage": "https://github.com/openedx/frontend-component-header#readme",
"homepage": "https://github.com/fccn/frontend-component-header-nau#readme",
"devDependencies": {
"@edx/brand": "npm:@openedx/brand-openedx@^1.2.2",
"@edx/browserslist-config": "^1.1.1",
Expand Down

0 comments on commit 15966f8

Please sign in to comment.