Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build -Porg.gradle.dependency.verification.console=verbose --dependency-verification strict
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: failure()
with:
name: dependency-verification
Expand All @@ -41,7 +41,7 @@ jobs:
- name: mkdirs
run: mkdir -p rd-cli-tool/build/distributions
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: rundeck.deb
path: rd-cli-tool/build/distributions
Expand All @@ -64,7 +64,7 @@ jobs:
- name: mkdirs
run: mkdir -p rd-cli-tool/build/distributions
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: rundeck.rpm
path: rd-cli-tool/build/distributions
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
run: ./gradlew build --dependency-verification off
- name: Integration tests
run: ./gradlew integrationTest --dependency-verification off
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
if: failure()
with:
name: integration-test-report
Expand All @@ -108,47 +108,47 @@ jobs:
id: get_rpm_version
run: VERSION=$(./gradlew currentVersion -q -Prelease.quiet --dependency-verification off | sed 's/-/./g') && echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
- name: Upload zip
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
# Artifact name
name: rd-${{ steps.get_version.outputs.VERSION }}.zip
# Directory containing files to upload
path: rd-cli-tool/build/distributions/rd-${{ steps.get_version.outputs.VERSION }}.zip
if-no-files-found: error
- name: Upload rpm
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
# Artifact name
name: rundeck.rpm
# Directory containing files to upload
path: rd-cli-tool/build/distributions/rundeck-cli-${{ steps.get_rpm_version.outputs.VERSION }}-1.noarch.rpm
if-no-files-found: error
- name: Upload deb
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
# Artifact name
name: rundeck.deb
# Directory containing files to upload
path: rd-cli-tool/build/distributions/rundeck-cli_${{ steps.get_rpm_version.outputs.VERSION }}-1_all.deb
if-no-files-found: error
- name: Upload all-jar
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
# Artifact name
name: rundeck-cli-${{ steps.get_version.outputs.VERSION }}-all.jar
# Directory containing files to upload
path: rd-cli-tool/build/libs/rundeck-cli-${{ steps.get_version.outputs.VERSION }}-all.jar
if-no-files-found: error
- name: Upload api-lib
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
# Artifact name
name: rd-api-client-${{ steps.get_version.outputs.VERSION }}.jar
# Directory containing files to upload
path: rd-api-client/build/libs/rd-api-client-${{ steps.get_version.outputs.VERSION }}.jar
if-no-files-found: error
- name: Upload rd-cli-lib
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
# Artifact name
name: rd-cli-lib-${{ steps.get_version.outputs.VERSION }}.jar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-signing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
RUNDECK_SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
RUNDECK_SIGNING_KEYID: rundeck-core+signing@pagerduty.com
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
# Directory containing files to upload
path: |
Expand Down
Loading