Skip to content

Commit

Permalink
feat: check couchdb versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ainsel committed May 20, 2024
1 parent f3a3c58 commit 1dd3767
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/act-couchdb-versions.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "[A] CouchDB list versions"

on:
push:
tags-ignore: [ '*' ]
paths:
- .github/workflows/act-couchdb-versions.yaml

workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest

steps:
- id: results
uses: milaboratory/github-ci-internal/actions/couchdb/get-versions@v4-beta
with:
couchdb-host: ${{ secrets.COUCHDB_HOST }}
couchdb-user: ${{ secrets.COUCHDB_USER }}
couchdb-passwd: ${{ secrets.COUCHDB_PASSWORD }}
repo-name: "pl"
major-versions: "2"
minor-versions: "5"

- names: milaboratory/github-ci/actions/shell@v4-beta
env:
RES: ${{ steps.results.outputs.versions }}
with:
run: |
echo "${RES}"

0 comments on commit 1dd3767

Please sign in to comment.