Skip to content

Commit

Permalink
deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Apr 17, 2024
1 parent bbf9aa1 commit 6187647
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 31 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/README.md

This file was deleted.

37 changes: 37 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Deploy

on:
workflow_run:
workflows: ["Build Android", "Build Linux", "Build Windows", "Release"]
branches: [main]
types: [completed]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Download Android APK Artifacts
uses: actions/download-artifact@v2
with:
name: maid-android-apk
path: build/app/outputs/apk/release

- name: Download Android AAB Artifact
uses: actions/download-artifact@v2
with:
name: maid-android-aab
path: build/app/outputs/bundle/release/app-release.aab

- name: Download Linux Artifacts
uses: actions/download-artifact@v2
with:
name: maid-linux
path: build/linux/x64/release/bundle

- name: Download Windows Artifacts
uses: actions/download-artifact@v2
with:
name: maid-windows
path: build/windows/x64/bundle


0 comments on commit 6187647

Please sign in to comment.