mirror of
https://github.com/bitwarden/desktop.git
synced 2025-02-18 01:31:42 +01:00
20 lines
294 B
YAML
20 lines
294 B
YAML
name: Deploy
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- prereleased
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: testing
|
|
run: |
|
|
echo ${{ github.ref }}
|
|
echo ${{ github.event.GITHUB_REF }}
|
|
|