forked from DroidKaigi/conference-app-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (25 loc) · 865 Bytes
/
DropStaging.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: drop-staging
on:
pull_request:
types: [closed]
# Disable all permissions. We have to enable required permissions at job-level.
permissions: {}
jobs:
drop-stage:
name: "Drop from staging"
runs-on: ubuntu-latest
permissions:
contents: read # for checkout
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
repository: droidkaigi/conference-app-2023
ref: gh-actions
path: gh-actions
- uses: ./gh-actions/actions/destroy-distribution-by-name
with:
api-token: ${{ secrets.DEPLOYGATE_API_TOKEN }}
app-owner-name: droidkaigi
platform: android
app-id: io.github.droidkaigi.confsched2023.dev
distribution-name: ${{ format('debug/refs/pull/{0}/head', github.event.pull_request.number) }}