Skip to content

Commit

Permalink
Fix deprecated set output option in CI (#25)
Browse files Browse the repository at this point in the history
* fix deprecated set output option in ci
Fixes #23
  • Loading branch information
danishjoseph authored Apr 24, 2024
1 parent a1fea54 commit fa4c15d
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Get version number
id: version
run: echo "VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
run: echo "VERSION=$(cat ./package.json | jq -r '.version')" >> $GITHUB_ENV

- name: Build Docker image
run: |
Expand All @@ -58,16 +58,3 @@ jobs:

- name: Push Docker image
run: docker push ${{ secrets.DOCKER_HUB_USERNAME }}/stockdog:v-${{ steps.version.outputs.version }}

- name: Update image metadata
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKER_HUB_USERNAME }}/stockdog:v-${{ steps.version.outputs.version }}
tags: |
type=sha
labels: |
org.opencontainers.image.title=Stockdog App
org.opencontainers.image.description=Stock market analysis app
org.opencontainers.image.url=https://github.com/${{github.repository}}
org.opencontainers.image.revision=${{steps.version.outputs.version}}
org.opencontainers.image.licenses=MIT

0 comments on commit fa4c15d

Please sign in to comment.