Skip to content

Commit

Permalink
Merge pull request unum-cloud#431 from unum-cloud/main-dev
Browse files Browse the repository at this point in the history
Make: Publishing with `GITHUB_TOKEN`
  • Loading branch information
ashvardanian authored Aug 18, 2023
2 parents 1543b8d + ca6eba1 commit 21864fa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
contents: write
pages: write
id-token: write

Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Upload Precompiled binaries to Release Assets
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
file: "./build_release/build/bin/ustore_flight_server*"
update_latest_release: true
Expand Down Expand Up @@ -222,6 +222,8 @@ jobs:
- name: Publish java
run: ./java/gradlew publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


build_and_publish_docker:
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
cff-version: 0.13.11
cff-version: 0.13.12
message: "If you use this software, please cite it as below."
authors:
- family-names: "Vardanian"
given-names: "Ash"
orcid: "https://orcid.org/0000-0002-4882-1815"
title: "UStore by Unum Cloud"
version: 0.13.11
version: 0.13.12
doi: 10.5281/zenodo.7537043
date-released: 2022-06-12
url: "https://github.com/unum-cloud/ustore"
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.13.11
0.13.12
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ publishing {
}
}

// Publishing to GitHub is much easier ;)
// repositories {
// maven {
// name = "OSSRH"
Expand Down

0 comments on commit 21864fa

Please sign in to comment.