When you set true
to :github-actions?
in build.edn
file, build.edn will set following outputs.
Function | Output | Description |
---|---|---|
pom |
|
Path for the pom.xml file |
jar |
|
Path for the generated JAR file |
uberjar |
|
Path for the generated standalone JAR file |
install |
|
Installed version string |
deploy |
|
Deployed version string |
update-documents |
|
Tagged version string |
bump-major-version |
|
Bumped new version string |
bump-minor-version |
|
Bumped new version string |
bump-patch-version |
|
Bumped new version string |
add-snapshot |
|
Updated new version string |
remove-snapshot |
|
Updated new version string |
If you’d like to automate your release process with GitHub Actions, it is good to refer following examples:
name: Tag and Release
on: workflow_dispatch
jobs:
tag-and-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# NOTE: Fetch all for counting commits
fetch-depth: 0
# ... abbreviation ...
- name: deploy to clojars
# NOTE: Specify ID to refer outputs from other steps
id: deploy
run: clojure -T:build deploy
env:
CLOJARS_PASSWORD: ${{secrets.CLOJARS_PASSWORD}}
CLOJARS_USERNAME: ${{secrets.CLOJARS_USERNAME}}
- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# NOTE: Refer outputs
tag_name: ${{ steps.deploy.outputs.version }}
release_name: ${{ steps.deploy.outputs.version }}
body: released
draft: false
prerelease: false