Skip to content

Commit

Permalink
Add GHA workflow for creating release binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuclaw committed Jan 28, 2024
1 parent bb65d29 commit 8c569ff
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: release

on:
push:
tags:
- '*'

jobs:
build-contribs:
name: Build contribs

steps:
- uses: actions/checkout@v3
- uses: dlang-community/setup-dlang@v1
with:
compiler: dmd-latest

- name: Build
run: dub build --build=release

- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: contribs
artifactErrorsFailBuild: true

runs-on: ubuntu-latest

0 comments on commit 8c569ff

Please sign in to comment.