Skip to content

Commit 2080b4c

Browse files
Merge pull request #106 from interTwin-eu/fix-release-url
[fix] release url
2 parents ac8e0e3 + 04842f0 commit 2080b4c

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/pypi.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
environment:
1212
name: pypi
13-
url: https://pypi.org/p/itwinai
13+
url: https://pypi.org/p/dask-flood-mapper
1414
permissions:
1515
id-token: write
16+
contents: write
1617
steps:
1718
- name: Checkout repo
1819
uses: actions/checkout@v4
@@ -36,5 +37,7 @@ jobs:
3637
run: |
3738
git config --local user.name "$GITHUB_ACTOR"
3839
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com"
39-
git commit $(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep '_version') -m 'Bump version' || echo "No changes to commit"
40+
git commit "$(git diff --name-only ${{ github.event.before }} \
41+
${{ github.sha }} | grep '_version')" -m 'Bump version' || \
42+
echo "No changes to commit"
4043
git push origin || echo "No changes to commit"

0 commit comments

Comments
 (0)