Skip to content

Commit

Permalink
build-windows.yml - remove release
Browse files Browse the repository at this point in the history
  • Loading branch information
i4k1 authored Oct 5, 2024
1 parent 671c7ff commit 5c593b1
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,14 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Build on Windows

on:
push:
branches: [ "main" ]
tags:
- 'v*'
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: windows-latest
permissions:
contents: write
pull-requests: write
repository-projects: write
steps:
- uses: actions/checkout@v4
- name: Setup Go
Expand All @@ -30,17 +21,3 @@ jobs:
run: go build
- name: Test
run: go test -json > TestResults.json
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
draft: false
prerelease: false

0 comments on commit 5c593b1

Please sign in to comment.