Skip to content

Commit

Permalink
v1.3.65
Browse files Browse the repository at this point in the history
  • Loading branch information
oz123 committed Jul 24, 2024
1 parent f10fb71 commit 7dc81a1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,13 @@ jobs:
git fetch --unshallow
docker run --rm -v ${{ github.workspace }}:/workspace -w /workspace debian:buster bash -c "apt-get update && apt install -y build-essential git pkg-config && git config --global --add safe.directory /workspace/mh && make -C mh deb-install-deps deb-export-archive deb-version deb-build"
ls ..
- name: list files
run: ls -l
- name: Extract Git Tag
run: |
# Retrieve the current tag
VERSION=$(git describe --tags --abbrev=0)
# Strip the 'v' prefix if needed
VERSION=${VERSION#v}
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: upload artifcat
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 7dc81a1

Please sign in to comment.