Skip to content

Commit 6ca2806

Browse files
Update release workflow
1 parent eb5294f commit 6ca2806

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
- name: Publish release to GitHub
4242
run: gh release create $VERSION "./icons/$filename" -F CHANGELOG.md -t "ProIcons v$VERSION" -d=${{ inputs.draft }}
4343
env:
44-
GH_TOKEN: ${{ github.token }}
44+
GH_TOKEN: ${{ secrets.GH_PAT }}

bin/generateChangelog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ export function generateChangelog() {
2222

2323
const toListItem = name => `
2424
<li>
25-
<img src="https://raw.githubusercontent.com/ProCode-Software/proicons/main/icons/png/white/${kebabCase(name)}.png#gh-dark-mode-only">
26-
<img src="https://raw.githubusercontent.com/ProCode-Software/proicons/main/icons/png/black/${kebabCase(name)}.png#gh-light-mode-only">
25+
<img src="https://raw.githubusercontent.com/ProCode-Software/proicons/main/icons/png@3x/white/${kebabCase(name)}.png#gh-dark-mode-only" width="24">
26+
<img src="https://raw.githubusercontent.com/ProCode-Software/proicons/main/icons/png@3x/black/${kebabCase(name)}.png#gh-light-mode-only" width="24">
2727
${name}
2828
</li>`.trim()
2929

0 commit comments

Comments
 (0)