-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 804 Bytes
/
ci.yml
File metadata and controls
40 lines (36 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Project: hyperi-rustlib
# File: .github/workflows/ci.yml
# Purpose: CI pipeline
#
# License: FSL-1.1-ALv2
# Copyright: (c) 2026 HYPERI PTY LIMITED
name: CI
on:
push:
branches: ["**"]
paths-ignore:
- ".claude/**"
- ".cursor/**"
- ".gemini/**"
- "hyperi-ai/**"
- "docs/**"
- "**.md"
pull_request:
branches: [main]
workflow_dispatch:
inputs:
tag:
type: string
required: true
description: "Tag to publish (e.g. v1.20.1)"
permissions:
contents: write
issues: write
pull-requests: write
jobs:
ci:
uses: hyperi-io/hyperi-ci/.github/workflows/rust-ci.yml@76545964f627863e295b5c04b80fb433702e5cca # main
with:
publish-target: oss
tag: ${{ inputs.tag || '' }}
secrets: inherit