Skip to content

Commit

Permalink
🔖 v6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stoe committed Jul 7, 2024
1 parent d6b5bd4 commit 36d76d1
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 26 deletions.
37 changes: 21 additions & 16 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,41 +11,44 @@ jobs:
runs-on: ubuntu-latest

concurrency:
group: publish-npm-${{ github.ref }}
group: ${{ github.workflow }}-npm-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
packages: write
id-token: write

env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 16
node-version: 20
registry-url: 'https://registry.npmjs.org'
scope: '@stoe'

- name: npm install
- name: NPM config
run: |
npm pkg delete scripts.prepare
npm install --ignore-scripts --pure-lockfile
git ls-files -z . | xargs -0 git update-index --assume-unchanged
- run: npm run publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: NPM publish
run: npm run publish

publish_gh:
name: Publish to GitHub
runs-on: ubuntu-latest

concurrency:
group: publish-gh-${{ github.ref }}
group: ${{ github.workflow }}-gh-${{ github.ref }}
cancel-in-progress: true

permissions:
Expand All @@ -54,22 +57,24 @@ jobs:

env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8
- name: Setup Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 16
node-version: 20
registry-url: 'https://npm.pkg.github.com'
scope: '@stoe'

- name: npm install
- name: NPM config
run: |
npm pkg delete scripts.prepare
npm install --ignore-scripts --pure-lockfile
git ls-files -z . | xargs -0 git update-index --assume-unchanged
- run: npm run publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: GitHub Packages publish
run: npm run publish
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/github/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stoe/uebersicht-github-contibutions",
"type": "module",
"version": "6.0.0",
"version": "6.0.1",
"description": "A GitHub contibutions widget for http://tracesof.net/uebersicht",
"keywords": [
"uebersicht",
Expand Down
2 changes: 1 addition & 1 deletion packages/me/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stoe/uebersicht-me",
"version": "6.0.0",
"version": "6.0.1",
"description": "A me widget for http://tracesof.net/uebersicht",
"keywords": [
"uebersicht",
Expand Down
2 changes: 1 addition & 1 deletion packages/nowplaying/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stoe/uebersicht-nowplaying",
"version": "6.0.0",
"version": "6.0.1",
"description": "A 'now playing' on Spotify/Music app widget for http://tracesof.net/uebersicht",
"keywords": [
"uebersicht",
Expand Down
2 changes: 1 addition & 1 deletion packages/simpleclock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stoe/uebersicht-simpleclock",
"version": "6.0.0",
"version": "6.0.1",
"description": "A simple clock widget for http://tracesof.net/uebersicht",
"keywords": [
"uebersicht",
Expand Down
2 changes: 1 addition & 1 deletion packages/worldclock/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stoe/uebersicht-worldclock",
"version": "6.0.0",
"version": "6.0.1",
"description": "A worldclock widget for http://tracesof.net/uebersicht",
"keywords": [
"uebersicht",
Expand Down

0 comments on commit 36d76d1

Please sign in to comment.