Skip to content

Commit 2df1552

Browse files
committed
Using v1 actions
1 parent 59cba1d commit 2df1552

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
uses: actions/checkout@v2
1414

1515
- name: Build
16-
uses: redis-field-engineering/redis-build-action@v2
16+
uses: redis-field-engineering/redis-build-action@v1
1717
with:
1818
release: false

.github/workflows/early-access.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,21 @@ jobs:
1414
uses: actions/checkout@v2
1515

1616
- name: Release
17-
uses: redis-field-engineering/redis-release-action@v2
17+
uses: redis-field-engineering/redis-release-action@v1
1818
with:
1919
gpg-key-id: ${{ secrets.GPG_KEY_ID }}
2020
gpg-public-key: ${{ secrets.GPG_PUBLIC_KEY }}
2121
gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }}
2222
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
2323
sonatype-username: ${{ secrets.SONATYPE_USERNAME }}
2424
sonatype-password: ${{ secrets.SONATYPE_PASSWORD }}
25-
github-token: ${{ secrets.GITHUB_TOKEN }}
26-
slack-webhook: ${{ secrets.JRELEASER_SLACK_WEBHOOK }}
25+
github-token: ${{ secrets.GIT_ACCESS_TOKEN }}
26+
slack-webhook: ${{ secrets.JRELEASER_SLACK_WEBHOOK }}
27+
28+
- name: Upload test reports
29+
if: failure()
30+
uses: actions/upload-artifact@v2
31+
with:
32+
name: test-reports
33+
path: |
34+
build/reports/aggregate-tests/

.github/workflows/release.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,21 @@ jobs:
2020
version: ${{ github.event.inputs.version }}
2121

2222
- name: Release
23-
uses: redis-field-engineering/redis-release-action@v2
23+
uses: redis-field-engineering/redis-release-action@v1
2424
with:
2525
gpg-key-id: ${{ secrets.GPG_KEY_ID }}
2626
gpg-public-key: ${{ secrets.GPG_PUBLIC_KEY }}
2727
gpg-secret-key: ${{ secrets.GPG_SECRET_KEY }}
2828
gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
2929
sonatype-username: ${{ secrets.SONATYPE_USERNAME }}
3030
sonatype-password: ${{ secrets.SONATYPE_PASSWORD }}
31-
github-token: ${{ secrets.GITHUB_TOKEN }}
31+
github-token: ${{ secrets.GIT_ACCESS_TOKEN }}
3232
slack-webhook: ${{ secrets.JRELEASER_SLACK_WEBHOOK }}
33+
34+
- name: Upload test reports
35+
if: failure()
36+
uses: actions/upload-artifact@v2
37+
with:
38+
name: test-reports
39+
path: |
40+
build/reports/aggregate-tests/

0 commit comments

Comments
 (0)