Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
LATEST_TAG="latest"
ALL_TAGS="${IMAGE}:${VERSION_TAG},${IMAGE}:${LONG_VERSION_TAG},${IMAGE}:${LATEST_TAG}"

echo ::set-output name=all_tags::${ALL_TAGS}
echo "all_tags=${ALL_TAGS}" >> "$GITHUB_OUTPUT"
- name: set up QEMU
uses: docker/setup-qemu-action@master
with:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ If any step of the action fails, the check will fail; however if some task tests
# GitHub action usage

```yaml
- uses: dnastack/wdl-ci@v2.1.0
- uses: dnastack/wdl-ci@v2.2.0
with:
# Configuration file where tests can be found
# Default: wdl-ci.config.json
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
with:
submodules: true
- name: wdl-ci
uses: dnastack/wdl-ci@v2.1.0
uses: dnastack/wdl-ci@v2.2.0
with:
wallet-url: ${{ secrets.WALLET_URL }}
wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }}
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: wdl-ci
uses: dnastack/wdl-ci@v2.1.0
uses: dnastack/wdl-ci@v2.2.0
with:
wallet-url: ${{ secrets.WALLET_URL }}
wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }}
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: wdl-ci
uses: dnastack/wdl-ci@v2.1.0
uses: dnastack/wdl-ci@v2.2.0
with:
wallet-url: ${{ secrets.WALLET_URL }}
wallet-client-id: ${{ secrets.WALLET_CLIENT_ID }}
Expand Down
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,19 @@ runs:
echo "WDL_CI_CUSTOM_TEST_WDL_DIR"=${{ inputs.wdl-ci-custom-test-wdl-dir }} >> $GITHUB_ENV
fi
- name: lint
uses: docker://dnastack/wdl-ci:v2.1.0
uses: docker://dnastack/wdl-ci:v2.2.0
with:
args: lint ${{ inputs.suppress-lint-errors && '--suppress-lint-errors' || '' }}
- name: detect-changes
uses: docker://dnastack/wdl-ci:v2.1.0
uses: docker://dnastack/wdl-ci:v2.2.0
with:
args: detect-changes
- name: submit
uses: docker://dnastack/wdl-ci:v2.1.0
uses: docker://dnastack/wdl-ci:v2.2.0
with:
args: submit
- name: monitor
uses: docker://dnastack/wdl-ci:v2.1.0
uses: docker://dnastack/wdl-ci:v2.2.0
with:
args: monitor --update-digests
# If a test fails, still update task digests for any tests that succeeded
Expand All @@ -80,6 +80,6 @@ runs:
fetch: false
- name: cleanup
if: always()
uses: docker://dnastack/wdl-ci:v2.1.0
uses: docker://dnastack/wdl-ci:v2.2.0
with:
args: cleanup
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "wdl-testing-cli"
description = "DNAstack WDL testing CLI"
version = "2.1.0"
version = "2.2.0"
authors = [
{ name = "DNAstack", email = "devs@dnastack.com" }
]
Expand Down