Skip to content

Commit

Permalink
pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Nov 6, 2024
1 parent 4cd48b9 commit d6c95a9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Release
env:
VERSION: '5.3.0'
ASM_VERSION: '5.0.0'
VERSION_SUFFIX: '-pre.1'

on:
push:
Expand Down Expand Up @@ -55,6 +56,32 @@ jobs:
name: bin
path: artifacts/*

prerelease:
runs-on: ubuntu-latest
needs:
- build
- test
# only run if VERSION_SUFFIX environment variable has a value and branch is '5.3'
if: env.VERSION_SUFFIX && github.ref == 'refs/heads/5.3'
steps:
- uses: actions/download-artifact@v4
with:
name: bin


release:
runs-on: ubuntu-latest
needs:
- build
- test
# only run if VERSION_SUFFIX environment variable is empty and branch is '5.3'
if: !env.VERSION_SUFFIX && github.ref == 'refs/heads/5.3'
steps:
- uses: actions/download-artifact@v4
with:
name: bin


# publish:
# needs:
# - build
Expand Down
4 changes: 4 additions & 0 deletions docs/release-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
### Improvements

- Upgraded dependent libraries.

## 5.2.0

This release introduces support for `.env` files.

0 comments on commit d6c95a9

Please sign in to comment.