Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrancoa authored Oct 23, 2024
1 parent b6729c3 commit 2fa3b65
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v2

- name: Retrieve Weaviate Version
uses: ./.github/actions/weaviate-version-in-image
id: weaviate-version
with:
image_tag: 'latest'
registry: 'docker.io/semitechnologies/weaviate'
uses: weaviate/github-common-actions/.github/actions/weaviate-version-in-image@main
id: weaviate-version
with:
image_tag: 'latest'
registry: 'docker.io/semitechnologies/weaviate'

- name: Output Weaviate Version
run: echo "Weaviate Version: ${{ steps.weaviate-version.outputs.weaviate_version }}"
run: echo "Weaviate Version: ${{ steps.weaviate-version.outputs.weaviate_version }}"
```
### Runs
This action runs using `composite` with the following steps:
1. **Set globals**: Sets global variables for action timeout and port.
2. **Start Weaviate service**: Starts the Weaviate Docker container.
3. **Wait for .well-known/ready API to be ready**: Waits until the Weaviate service is ready.
4. **Set the Weaviate version as an output**: Retrieves and sets the Weaviate version as an output.
4. **Set the Weaviate version as an output**: Retrieves and sets the Weaviate version as an output.

0 comments on commit 2fa3b65

Please sign in to comment.