-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1009 Bytes
/
pgvector.yaml
File metadata and controls
39 lines (36 loc) · 1009 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
name: pgvector
on:
schedule:
- cron: "00 01 * * 1-5"
pull_request:
paths:
- .github/workflows/pgvector.yaml
- 'images/pgvector/*.yaml'
- 'images/pgvector/**/*.yaml'
push:
branches:
- 'main'
paths:
- .github/workflows/pgvector.yaml
- 'images/pgvector/*.yaml'
- 'images/pgvector/**/*.yaml'
workflow_dispatch:
permissions:
contents: read
packages: write
attestations: write
id-token: write
security-events: write
actions: read
jobs:
publish:
strategy:
matrix:
version: [latest, "18", "17", "16"]
variant: [prod, dev]
name: ${{ matrix.version }}${{ matrix.variant == 'shell' && '-shell' || matrix.variant == 'dev' && '-dev' || '' }}
uses: './.github/workflows/release.yaml'
with:
tag: ${{ matrix.version }}${{ matrix.variant == 'shell' && '-shell' || matrix.variant == 'dev' && '-dev' || '' }}
target: ${{ format('{0}/{1}', matrix.version, matrix.variant) }}
secrets: inherit