Skip to content

Commit

Permalink
#14: Add release job runner (without script).
Browse files Browse the repository at this point in the history
  • Loading branch information
annoviko committed Oct 7, 2021
1 parent c2c21a8 commit 02586d4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release-httpctrl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: release httpctrl

on: [workflow_dispatch]

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: Clone repository
uses: actions/checkout@v2

- name: Run multi-line script
shell: bash
run: ci/github-ci-release.sh

0 comments on commit 02586d4

Please sign in to comment.