Skip to content

Commit

Permalink
Merge pull request #5 from misterzik/development
Browse files Browse the repository at this point in the history
(FIX)CICD-LatestNode_1.0.1
  • Loading branch information
misterzik authored Nov 24, 2022
2 parents c28fe15 + 7e6ccea commit 2e6d222
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 19 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,37 +11,37 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
node-version: 'lts/*'
- run: npm ci
# - run: npm test

publish-npm:
publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
registry-url: https://registry.npmjs.org/
node-version: 'lts/*'
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
NODE_AUTH_TOKEN: ${{secrets.GH_TOKEN}}

publish-gpr:
publish-npm:
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
registry-url: https://npm.pkg.github.com/
node-version: 'lts/*'
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GH_TOKEN}}
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
22 changes: 18 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
# Dependencies
/node_modules

# Testing
/coverage

# Production
/dist

# Misc
.DS_Store
.DS_Store?
._*
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
node_modules
Thumbs.db
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ There are two types of content at this moment. The first method is text-based; Y

The text content will display in the center of the slider. The Image will take the "full" width of the overall slider container.

![logo](minervajs-slider-2.png "Minerva.JS")

### Installation

Expand Down
Binary file removed minervajs-slider-2.png
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@misterzik/minerva.js",
"version": "1.0.0",
"version": "1.0.1",
"description": "Minerva.JS is a Simple and Elegant Carousel Slider, and Minerva JS is a super lightweight carousel component. Written under the react framework.",
"private": false,
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 2e6d222

Please sign in to comment.