We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make release
target
1 parent d517550 commit 48a721eCopy full SHA for 48a721e
.github/workflows/release.yml
@@ -95,6 +95,8 @@ jobs:
95
96
- name: Retrieve Version
97
run: |
98
+ git config --global user.name 'github-actions[bot]'
99
+ git config --global user.email 'github-actions[bot]@users.noreply.github.com'
100
cd ./src/http-server
101
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
102
echo "CRATE_VERSION=$(cargo tag --no-commit --no-tag -p=v ${{ inputs.version }})" >> $GITHUB_ENV
@@ -103,7 +105,7 @@ jobs:
103
105
fi
104
106
107
- name: Build binary
- run: cargo build --release --target ${{ matrix.target }} -p http-server
108
+ run: make release TARGET=${{ matrix.target }}
109
110
- name: Package binary
111
0 commit comments