Skip to content

Commit

Permalink
fix: address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hacheigriega committed Jan 18, 2024
1 parent 3634bbf commit 87be1fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ jobs:

- name: 🔨 Build Binaries
run: |
export GIT_VERSION=$(echo $(git describe --tags --always --match "v*") | sed 's/^v//')
export GIT_COMMIT=$(git log -1 --format='%H')
export VERSION=$(echo $(git describe --tags --always --match "v*") | sed 's/^v//')
export COMMIT=$(git log -1 --format='%H')
docker build -t seda-static -f ./dockerfiles/Dockerfile.build-static \
--build-arg GIT_VERSION="$GIT_VERSION" \
--build-arg GIT_COMMIT="$GIT_COMMIT" .
--build-arg GIT_VERSION="$VERSION" \
--build-arg GIT_COMMIT="$COMMIT" .
mkdir build
docker run --rm -v $(pwd)/build:/output seda-static cp -r /build/. /output/
Expand Down

0 comments on commit 87be1fd

Please sign in to comment.