mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 09:21:42 +03:00
20 lines
520 B
YAML
20 lines
520 B
YAML
|
name: ota
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches:
|
||
|
- 'next/arvo'
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
name: "make an OTA update to arvo on ~wannec-dozzod-marzod (devstream)"
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: ./.github/actions/ota
|
||
|
with:
|
||
|
ship: 'devstream'
|
||
|
credentials: ${{ secrets.JANEWAY_SERVICE_KEY }}
|
||
|
ssh-sec-key: ${{ secrets.JANEWAY_SSH_SEC_KEY }}
|
||
|
ssh-pub-key: ${{ secrets.JANEWAY_SSH_PUB_KEY }}
|
||
|
ref: 'next/arvo'
|