We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 844e489 commit d241c9fCopy full SHA for d241c9f
1 file changed
.github/workflows/release.yml
@@ -14,15 +14,19 @@ jobs:
14
15
steps:
16
- name: Setup packages
17
- run: sudo pacman -Sy --needed --noconfirm git nodejs npm
+ run: |
18
+ sudo pacman -Sy --needed --noconfirm \
19
+ git \
20
+ nodejs \
21
+ npm \
22
+ pacman-contrib
23
24
- uses: actions/checkout@v4
25
with:
26
persist-credentials: false
27
- - run: |
- git config --global --add safe.directory /__w/downgrade/downgrade
- git remote show origin
28
+ - name: Fix git permissions
29
+ run: git config --global --add safe.directory "$PWD"
30
31
- id: release
32
uses: cycjimmy/semantic-release-action@v4
0 commit comments