Skip to content

Commit

Permalink
Experimenting with upload artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejMecka authored Feb 9, 2024
1 parent 6e36971 commit 0735ec4
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/actions/pwa2Apk/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'PWA to APK action'
description: 'Github Action for Converting your PWA to APK.'
description: 'GitHub Action for Converting your PWA to APK.'
branding:
icon: 'package'
color: 'orange'
Expand All @@ -10,8 +10,22 @@ inputs:
outputs:
message:
description: "Status message from build script"

runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.project-root-folder }}
- ${{ inputs.project-root-folder }}

steps:
- name: Upload APK artifact
uses: actions/upload-artifact@v4
with:
name: apk
path: '*.apk'

- name: Upload AAB artifact
uses: actions/upload-artifact@v4
with:
name: aab
path: '*.aab'

0 comments on commit 0735ec4

Please sign in to comment.