Skip to content

Commit

Permalink
ci: Copy ci steps from .forgejo to .github
Browse files Browse the repository at this point in the history
  • Loading branch information
Crown0815 committed Oct 29, 2024
1 parent 844d04d commit c14050f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# SPDX-License-Identifier: MIT
#
# https://code.forgejo.org/forgejo/runner
#
# Build the runner binaries and OCI images
#
# ROLE: forgejo-integration
# DOER: forgejo-ci
# TOKEN: <generated from https://code.forgejo.org/forgejo-ci>
#
name: Build release

on:
workflow_dispatch:
jobs:
release:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3

- name: Build
run: |
go build -o forgejo-runner.exe
- name: Upload release
uses: actions/upload-artifact@v4
with:
name: forgejo-runner
path: forgejo-runner.exe

0 comments on commit c14050f

Please sign in to comment.