Skip to content

Commit a315bb0

Browse files
committed
Make build-binaries a job in release-binaries.
1 parent 55368cd commit a315bb0

2 files changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/build-binaries.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "build-binaries"
1+
name: "Build Binaries"
22

33
# Build binaries when called upon by another workflow, or manually triggered, or a commit is pushed.
44
# Do not build branches when a tag is pushed - this is handled by release-binaries.yml

.github/workflows/release-binaries.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,14 @@ on:
44
tags: 'v*.*.*'
55

66
jobs:
7+
build-binaries:
8+
- uses: ./.github/workflows/build-binaries.yml
9+
name: Build Moonscript Binaries (Windows & Linux)
710
release:
811
name: Release Moonscript Binaries
912
runs-on: ubuntu-latest
1013
steps:
1114

12-
# Checkout repository at tagged commit.
13-
- uses: actions/checkout@v4
14-
name: Checkout gmod-moonscript
15-
16-
# Run build-binaries with the tagged commit.
17-
- uses: ./.github/workflows/build-binaries.yml
18-
name: Build Moonscript Binaries (Windows & Linux)
19-
2015
# Make artifacts directory
2116
- name: Make artifacts directory
2217
run: mkdir artifacts

0 commit comments

Comments
 (0)