-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to release ODH/DW with compiled test binaries
- Loading branch information
1 parent
8028f3f
commit ff35644
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# This workflow will compile e2e tests and release them | ||
|
||
name: ODH Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Tag to be used for release, i.e.: v0.0.1' | ||
required: true | ||
|
||
jobs: | ||
release-odh: | ||
runs-on: ubuntu-latest | ||
|
||
# Permission required to create a release | ||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: './go.mod' | ||
|
||
- name: Verify that release doesn't exist yet | ||
shell: bash {0} | ||
run: | | ||
gh release view ${{ github.event.inputs.version }} | ||
status=$? | ||
if [[ $status -eq 0 ]]; then | ||
echo "Release ${{ github.event.inputs.version }} already exists." | ||
exit 1 | ||
fi | ||
env: | ||
GITHUB_TOKEN: ${{ github.TOKEN }} | ||
|
||
- name: Compile tests | ||
run: | | ||
go test -c -o compiled-tests/kfto ./tests/kfto/ | ||
- name: Creates a release in GitHub | ||
run: | | ||
gh release create ${{ github.event.inputs.version }} --target ${{ github.ref }} compiled-tests/* | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.CODEFLARE_MACHINE_ACCOUNT_TOKEN }} | ||
shell: bash |