Changed the shape of speaker icons in the timeline grid from rounded rectangle to circles #80
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
with: | |
repository: droidkaigi/conference-app-2024 | |
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.confsched2024.dev | |
distribution-name: ${{ format('debug/refs/pull/{0}/head', github.event.pull_request.number) }} |