Skip to content

Commit

Permalink
feat: CodeArtifact Migration - Phase 1 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
svanherk authored May 26, 2022
1 parent 63dcddc commit 4d533ad
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release
on:
push:
branches:
- main
- '[0-9]+.x'
- '[0-9]+.[0-9]+.x'
jobs:
release:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: Release
timeout-minutes: 2
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: Brightspace/third-party-actions@actions/checkout
with:
persist-credentials: false
- name: Setup Node
uses: Brightspace/third-party-actions@actions/setup-node
with:
node-version: '14'
- name: Semantic Release
uses: BrightspaceUI/actions/semantic-release@main
with:
GITHUB_TOKEN: ${{ secrets.D2L_GITHUB_TOKEN }}
NPM: true
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
14 changes: 13 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "git",
"url": "https://github.com/BrightspaceUI/inputs.git"
},
"name": "d2l-inputs",
"name": "@brightspace-ui/inputs",
"scripts": {
"lint": "npm run lint:wc && npm run lint:js",
"lint:js": "eslint . --ext .js,.html demo/**/*.html",
Expand Down Expand Up @@ -32,6 +32,18 @@
"type-detect": "1.0.0"
},
"main": "d2l-inputs.js",
"files": [
"d2l-input-checkbox-spacer.js",
"d2l-input-checkbox.js",
"d2l-input-radio-styles.js",
"d2l-input-search.js",
"d2l-input-shared-styles.js",
"d2l-input-text.js",
"d2l-input-textarea.js"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@brightspace-ui/core": "^2",
"@polymer/polymer": "^3.0.0",
Expand Down

0 comments on commit 4d533ad

Please sign in to comment.