From fa4c15d16fd9ca62475b469ee98b6a2d8cd2df98 Mon Sep 17 00:00:00 2001 From: Danish Joseph Date: Wed, 24 Apr 2024 12:54:36 +0200 Subject: [PATCH] Fix deprecated set output option in CI (#25) * fix deprecated set output option in ci Fixes #23 --- .github/workflows/ci.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f61bb85..542773c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: | @@ -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