ae0613fbb3
While there, include integration testing to make sure the script is working as intended before using it. While there, edit maketarball.bash's comments.
19 lines
340 B
YAML
19 lines
340 B
YAML
# Verifies that `./script/ghpublish.bash` is WAI
|
|
name: ghpublish
|
|
on:
|
|
push:
|
|
branches:
|
|
- "release/**"
|
|
- "fullbuild"
|
|
- "ghpublishbuild"
|
|
|
|
jobs:
|
|
test_ghpublish_bash:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- run: ./script/ghpublish_test.bash
|