Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
working-directory: ${{ matrix.component }}
run: |
mkdir -p dist out
cp LICENSE dist/LICENSE.txt
cp $GITHUB_WORKSPACE/LICENSE dist/LICENSE.txt

export GIT_COMMIT=$(git rev-parse --short HEAD)
export GIT_DIRTY=$(test -n "$(git status --porcelain)" && echo "+CHANGES")
Expand All @@ -166,7 +166,7 @@ jobs:
LICENSE_DIR: ".release/linux/package/usr/share/doc/${{ env.PKG_NAME }}"
run: |
mkdir -p "$LICENSE_DIR"
cp LICENSE "$LICENSE_DIR/LICENSE.txt"
cp $GITHUB_WORKSPACE/LICENSE "$LICENSE_DIR/LICENSE.txt"

- name: Package rpm and deb files
if: matrix.goos == 'linux' && matrix.component == 'cli' && matrix.skip_packaging != 'true'
Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:
unzip -j *.zip
- name: Copy LICENSE
run:
cp LICENSE ./control-plane
cp $GITHUB_WORKSPACE/LICENSE $GITHUB_WORKSPACE/control-plane

# This naming convention will be used ONLY for per-commit dev images
- name: Set docker dev tag
Expand Down