forked from DopplerHQ/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (28 loc) · 883 Bytes
/
post-release.yml
File metadata and controls
30 lines (28 loc) · 883 Bytes
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
name: Test new release
on: [release, workflow_dispatch]
jobs:
verify-gpg-signature:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
with:
path: ./src/github.com/${{ github.repository }}
- name: Install CLI
shell: bash
run: curl -Ls --tlsv1.2 --proto "=https" --retry 3 https://cli.doppler.com/install.sh | sudo sh -s -- --debug --verify-signature
- name: Test CLI
run: doppler --version
verify-scoop:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v1
with:
path: ./src/github.com/${{ github.repository }}
- name: Install Scoop and CLI
run: |
iex "& {$(irm get.scoop.sh)} -RunAsAdmin"
scoop bucket add doppler https://github.com/DopplerHQ/scoop-doppler.git
scoop install doppler
doppler --version