-
Notifications
You must be signed in to change notification settings - Fork 10
40 lines (34 loc) · 832 Bytes
/
release.yml
File metadata and controls
40 lines (34 loc) · 832 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
name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
uses: ./.github/workflows/build.yml
release:
runs-on: ubuntu-24.04
needs: build
permissions:
contents: write
steps:
- name: Set Aikido version
run: |
echo "AIKIDO_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
pattern: |
aikido-php-firewall*
- name: List Artifacts
run: |
ls -l
pwd
- name: Deploy to GitHub Release (draft)
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2
with:
draft: true
files: |
./**/aikido-php-firewall*