Skip to content

Commit f577526

Browse files
committed
Fix tag check
1 parent 73e4d0f commit f577526

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Assume package name == repository name
4-
package="${GITHUB_REPOSITORY#*/}"$
4+
package="${GITHUB_REPOSITORY#*/}"
55

66
git config user.name "${GITHUB_ACTOR}"
77
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
steps:
1313
- uses: actions/checkout@v3
14+
with:
15+
fetch-depth: 0
1416

1517
- name: Install OTP and Elixir
1618
uses: erlef/setup-beam@v1

0 commit comments

Comments
 (0)