ENH: Use JSON type in _create_strand_version
#14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-publish-strand-version | |
on: | |
push: | |
# paths: | |
# - tests/schema.json | |
branches-ignore: | |
- main | |
jobs: | |
test-publish-strand-version: | |
if: "!contains(github.event.head_commit.message, 'skipci')" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Publish strand version | |
id: publish-strand-version | |
uses: octue/publish-strand-version@create-initial-action | |
with: | |
token: ${{ secrets.STRANDS_TOKEN }} | |
account: cortadocodes | |
name: test-publish-strand-version | |
path: tests/schema.json | |
notes: "Some test notes." | |
- name: Print outputs | |
run: | | |
echo "Strand URL ${{ steps.publish-strand-version.outputs.strand_url }}" | |
echo "Strand version URI ${{ steps.publish-strand-version.outputs.strand_version_uri }}" | |
echo "Strand version UUID ${{ steps.publish-strand-version.outputs.strand_version_uuid }}" |