Skip to content

Commit

Permalink
rename token, rename job name, fix dokka
Browse files Browse the repository at this point in the history
  • Loading branch information
nitro-neal committed Sep 19, 2024
1 parent 9116030 commit c84e7fb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ jobs:
name: x86_64-pc-windows-msvc-dll
path: bound/kt/src/main/resources/

- name: Build and Test Kotlin Project
- name: Deploy Snapshot / Verify
run: |
# cd into the Kotlin project
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: AButler/[email protected]
with:
files: web5_cli-aarch64-apple-darwin
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.TBD_RELEASE_GITHUB_PERSONAL_ACCESS_TOKEN }}

build_cli_x86_64_apple_darwin:
runs-on: macos-12
Expand All @@ -56,7 +56,7 @@ jobs:
uses: AButler/[email protected]
with:
files: web5_cli-x86_64-apple-darwin
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.TBD_RELEASE_GITHUB_PERSONAL_ACCESS_TOKEN }}

build_cli_x86_64_unknown_linux_gnu:
runs-on: ubuntu-latest
Expand All @@ -71,7 +71,7 @@ jobs:
uses: AButler/[email protected]
with:
files: web5_cli-x86_64-unknown-linux-gnu
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.TBD_RELEASE_GITHUB_PERSONAL_ACCESS_TOKEN }}

build_cli_x86_64_unknown_linux_musl:
runs-on: ubuntu-latest
Expand All @@ -88,7 +88,7 @@ jobs:
uses: AButler/[email protected]
with:
files: web5_cli-x86_64-unknown-linux-musl
repo-token: ${{ secrets.GITHUB_TOKEN }}
repo-token: ${{ secrets.TBD_RELEASE_GITHUB_PERSONAL_ACCESS_TOKEN }}

git-tag:
runs-on: ubuntu-latest
Expand All @@ -103,7 +103,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.TBD_RELEASE_GITHUB_PERSONAL_ACCESS_TOKEN }}

# Used in writing commits in the release process
- id: set-git-config
Expand Down Expand Up @@ -271,7 +271,9 @@ jobs:
${{ runner.os }}-maven-
- run: mvn dokka:dokka
working-directory: bound/kt
- run: mkdir _site && mv bound/kt/target/dokka _site/kt
- run: mkdir -p _site/kt/${GITHUB_REF_NAME} && mv bound/kt/target/dokka/* _site/kt/${GITHUB_REF_NAME}
env:
GITHUB_REF_NAME: ${{ github.ref_name }}
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
Expand Down

0 comments on commit c84e7fb

Please sign in to comment.