Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix deprecations #293

Merged
merged 1 commit into from
Aug 9, 2024
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
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache NPM
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- run: |
npm install
- run: |
Expand Down
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ inputs:
required: false
description: 'If the platform is Web set this to [yes|no] to control whether a web preview is created for the build.'
default: 'no'
artifact-type:
required: false
description: 'The build artifact type to download. APK | IPA | APP | ...'
filename:
required: false
description: 'The filename to use for the IPA/APK (iOS, Android) defaults to {{workflow_name}}-{{run_id}}.[apk|ipa]'
Expand All @@ -49,5 +52,5 @@ inputs:
description: 'Set this to determine the number of days to retain the uploaded artifact [1-90](defaults to 90).'
default: 90
runs:
using: 'node12'
using: 'node20'
main: 'dist/index.js'
Loading
Loading