Skip to content

Commit

Permalink
Package
Browse files Browse the repository at this point in the history
  • Loading branch information
andreev-io committed Jan 23, 2025
1 parent 5c10097 commit 13b6300
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/kubenetmon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,9 @@ jobs:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Download Docker image
uses: actions/download-artifact@v4
with:
Expand All @@ -188,7 +191,7 @@ jobs:
id: version
run: |
# Use short commit SHA as the version
VERSION=$(git rev-parse --short HEAD)
VERSION="0.1.0-$(git rev-parse --short HEAD)"
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Push to GitHub Container Registry
Expand Down Expand Up @@ -218,7 +221,7 @@ jobs:
id: version
run: |
# Use short commit SHA as the version
VERSION=$(git rev-parse --short HEAD)
VERSION="0.1.0-$(git rev-parse --short HEAD)"
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Update chart version
Expand Down

0 comments on commit 13b6300

Please sign in to comment.