Skip to content

Commit eabefba

Browse files
chore: removed cache from actions
1 parent 5375925 commit eabefba

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/cli-dapp.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,11 @@ jobs:
1313
outputs:
1414
app: app/build/outputs/apk/release
1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: actions/setup-java@v3
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-java@v4
1818
with:
19-
java-version: 11
20-
distribution: 'temurin'
21-
cache: gradle
19+
java-version: 17
20+
distribution: 'zulu'
2221
- run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}\nENV_SENTRY_DSN=${{ secrets.WCM_SENTRY_DSN }}" >> .env
2322
- run: touch ./android/sentry.properties && echo "${{ secrets.WCM_SENTRY_FILE }}" >> ./android/sentry.properties
2423
- run: npm install -g yarn

.github/workflows/cli-wallet.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
with:
1919
java-version: 17
2020
distribution: 'zulu'
21-
cache: gradle
2221
- run: touch .env && echo "ENV_PROJECT_ID=${{ secrets.ENV_PROJECT_ID }}\nENV_RELAY_URL=${{ secrets.ENV_RELAY_URL }}\nENV_SENTRY_DSN=${{ secrets.W3W_SENTRY_DSN }}" >> .env
2322
- run: touch ./android/sentry.properties && echo "${{ secrets.W3W_SENTRY_FILE }}" >> ./android/sentry.properties
2423
- run: npm install -g yarn

.github/workflows/release-android-base.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ jobs:
6161
distribution: 'zulu'
6262
java-version: '17'
6363
architecture: x86_64
64-
cache: 'gradle'
6564

6665
- name: Create env file
6766
run: touch ${{ inputs.root-path }}/.env.${{ inputs.release-type }} && echo -e "ENV_PROJECT_ID=${{ secrets.project-id }}\nENV_RELAY_URL=${{ secrets.relay-url }}\nENV_SENTRY_DSN=${{ secrets.sentry-dsn }}\nENV_SENTRY_TAG=${{ inputs.release-type }}" >> ${{ inputs.root-path }}/.env.${{ inputs.release-type }}

0 commit comments

Comments
 (0)