Skip to content

Commit a3bd78e

Browse files
committed
ci: fix not found error
1 parent 8e7cf62 commit a3bd78e

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,17 @@ jobs:
4040
fi
4141
done
4242
43+
- name: Create git tag
44+
run: |
45+
git config user.name "github-actions[bot]"
46+
git config user.email "github-actions[bot]@users.noreply.github.com"
47+
git tag ${{ steps.tag.outputs.tag }}
48+
git push origin ${{ steps.tag.outputs.tag }}
49+
4350
- name: Create release
4451
uses: softprops/action-gh-release@v2
4552
with:
4653
tag_name: ${{ steps.tag.outputs.tag }}
4754
name: Release ${{ steps.tag.outputs.tag }}
48-
files: |
49-
schemas.zip
50-
*.zip
55+
files: "*.zip"
5156
generate_release_notes: true

0 commit comments

Comments
 (0)