jreleaser v1.12.0 #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Variables | |
id: vars | |
run: | | |
echo "version=$(cat VERSION)" >>$GITHUB_OUTPUT | |
echo "tag=${GITHUB_REF#refs/tags/}" >>$GITHUB_OUTPUT | |
- name: Install libfuse | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install fuse | |
- name: Create the AppImage | |
run: sh create-appimage.sh | |
env: | |
DISTRIBUTION_VERSION: ${{ steps.vars.outputs.version }} | |
DISTRIBUTION_TAG: ${{ steps.vars.outputs.tag }} | |
- name: Release | |
uses: jreleaser/release-action@v2 | |
with: | |
version: latest | |
arguments: full-release | |
env: | |
JRELEASER_PROJECT_VERSION: ${{ steps.vars.outputs.version }} | |
JRELEASER_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
JRELEASER_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} | |
JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }} | |
JRELEASER_GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }} | |
JRELEASER_TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }} | |
JRELEASER_TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }} | |
JRELEASER_TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} | |
JRELEASER_TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} | |
JRELEASER_MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} | |
JRELEASER_BLUESKY_HOST: ${{ secrets.BLUESKY_HOST }} | |
JRELEASER_BLUESKY_HANDLE: ${{ secrets.BLUESKY_HANDLE }} | |
JRELEASER_BLUESKY_PASSWORD: ${{ secrets.BLUESKY_PASSWORD }} | |
- name: JReleaser output | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jreleaser-logs | |
path: | | |
out/jreleaser/trace.log | |
out/jreleaser/output.properties |