Skip to content

Commit

Permalink
GitHub: Development.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gacko committed Jul 25, 2024
1 parent b00245e commit 7880b2b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Release

on:
push:
branches:
- liljx

jobs:
get-releases:
name: Get releases
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: echo capa/v*/release.yaml azure/v*/release.yaml | jq --raw-input 'split(" ")' --compact-output
- id: get-releases
run: echo "releases=$(echo capa/v*/release.yaml azure/v*/release.yaml | jq --raw-input 'split(" ")' --compact-output)" >> "$GITHUB_OUTPUT"
outputs:
releases: ${{ steps.get-releases.outputs.releases }}

0 comments on commit 7880b2b

Please sign in to comment.