Skip to content

Commit b752e63

Browse files
committed
Update publish workflow to use inline gradle publish command
1 parent 8cf516a commit b752e63

1 file changed

Lines changed: 23 additions & 12 deletions

File tree

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
1-
name: Publish Dependency
2-
on:
3-
push:
4-
tags:
5-
- "*"
6-
jobs:
7-
call-reusable-workflow:
8-
uses: intisy/workflows/.github/workflows/publish-dependency.yml@main
9-
with:
10-
repository: ${{ github.repository }}
11-
secrets:
12-
envPAT: ${{ secrets.PAT }}
1+
name: Publish Dependency
2+
on:
3+
push:
4+
tags:
5+
- "*"
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout project sources
11+
uses: actions/checkout@v4
12+
13+
- name: Setup Gradle
14+
uses: gradle/gradle-build-action@v3
15+
16+
- name: Grant execute permission for gradlew
17+
run: chmod +x gradlew
18+
19+
- name: Publish to GitHub Packages
20+
run: ./gradlew publish -Partifact_version=${{ github.ref_name }}
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.PAT }}
23+
GITHUB_ACTOR: ${{ github.actor }}

0 commit comments

Comments
 (0)