Skip to content

Commit

Permalink
ci: fix project name
Browse files Browse the repository at this point in the history
  • Loading branch information
benny123tw committed Jun 13, 2024
1 parent 13e4797 commit e66ecc8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/1.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
jobs:

build:
permissions:
contents: read
checks: write
id-token: write
name: Build + unit tests
uses: ./.github/workflows/callable.build.yml
if: | # avoid unnecessary pipeline runs during artifact release process ('gradle release plugin')
Expand Down Expand Up @@ -66,9 +70,9 @@ jobs:
(
github.event_name != 'workflow_dispatch'
|| inputs.type == '...no release'
) && (
github.ref == 'refs/heads/main'
|| github.ref_type == 'tag'
) && (
github.ref == 'refs/heads/main'
|| github.ref_type == 'tag'
)
publish_javadoc:
Expand All @@ -81,4 +85,4 @@ jobs:
(
github.ref == 'refs/heads/main'
&& ( inputs.type == '' || inputs.type == '...no release' )
) || github.ref_type == 'tag'
) || github.ref_type == 'tag'
2 changes: 1 addition & 1 deletion .github/workflows/callable.publish-javadoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
env:
LIBRARY_NAME: ${{ env.LIBRARY_NAME }}
run: |
cd "$LIBRARY_NAME/build/docs/javadoc"
cd "vite-spring-webmvc/build/docs/javadoc"
zip -r ../../../../javadoc.zip .
- name: Upload artifact
Expand Down

0 comments on commit e66ecc8

Please sign in to comment.