Skip to content

Commit

Permalink
feat: manual_trigger workflow was added (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
matzuk authored Jun 5, 2024
1 parent bebf259 commit 9cbab83
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/manual_trigger.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "Manual Trigger Workflow"

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "16"

- name: Install dependencies
run: npm install

- name: Build TypeScript
run: npm run build

- name: Run tests
uses: ./
with:
apiKey: ${{ secrets.MARATHON_CLOUD_API_TOKEN }}
application: "example/app.apk"
testApplication: "example/appTest.apk"
platform: android
name: "3_0"
output: "output"
outputGlob: "tests/**"
version: "1.0.15"

- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: output
path: output
Binary file added example/app.apk
Binary file not shown.
Binary file added example/appTest.apk
Binary file not shown.

0 comments on commit 9cbab83

Please sign in to comment.