We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7cf62 commit a3bd78eCopy full SHA for a3bd78e
1 file changed
.github/workflows/publish.yml
@@ -40,12 +40,17 @@ jobs:
40
fi
41
done
42
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
+
50
- name: Create release
51
uses: softprops/action-gh-release@v2
52
with:
53
tag_name: ${{ steps.tag.outputs.tag }}
54
name: Release ${{ steps.tag.outputs.tag }}
- files: |
- schemas.zip
- *.zip
55
+ files: "*.zip"
56
generate_release_notes: true
0 commit comments