mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 22:50:18 +00:00
ci: Add ability to specify git ref (#598)
This commit is contained in:
parent
daba370126
commit
eccc47bb73
2
.github/workflows/e2e.yml
vendored
2
.github/workflows/e2e.yml
vendored
@ -35,6 +35,8 @@ jobs:
|
|||||||
aqua:
|
aqua:
|
||||||
name: "aqua"
|
name: "aqua"
|
||||||
uses: ./.github/workflows/snapshot.yml
|
uses: ./.github/workflows/snapshot.yml
|
||||||
|
with:
|
||||||
|
ref: ${{ github.ref }}
|
||||||
|
|
||||||
aqua-playground:
|
aqua-playground:
|
||||||
needs: aqua
|
needs: aqua
|
||||||
|
5
.github/workflows/snapshot.yml
vendored
5
.github/workflows/snapshot.yml
vendored
@ -7,6 +7,10 @@ on:
|
|||||||
description: "@fluencejs/fluence version"
|
description: "@fluencejs/fluence version"
|
||||||
type: string
|
type: string
|
||||||
default: "null"
|
default: "null"
|
||||||
|
ref:
|
||||||
|
description: "git ref to checkout to"
|
||||||
|
type: string
|
||||||
|
default: "main"
|
||||||
outputs:
|
outputs:
|
||||||
aqua-version:
|
aqua-version:
|
||||||
description: "@fluencelabs/aqua version"
|
description: "@fluencelabs/aqua version"
|
||||||
@ -25,6 +29,7 @@ jobs:
|
|||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
repository: fluencelabs/aqua
|
repository: fluencelabs/aqua
|
||||||
|
with: ${{ inputs.ref }}
|
||||||
|
|
||||||
- name: Generate version
|
- name: Generate version
|
||||||
id: version
|
id: version
|
||||||
|
Loading…
Reference in New Issue
Block a user