Skip to content

v1.0.15

v1.0.15 #21

Workflow file for this run

name: Release
on:
release:
types:
- released
branches: main
jobs:
build:
runs-on: ubuntu-latest
name: Build & Release
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: main
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore nuget packages
run: dotnet restore Authelia-Auth/Authelia-Auth.csproj
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install JPRM
run: python -m pip install jprm
- name: Run JPRM
run: python build_plugin.py --version=${GITHUB_REF#refs/*/}
- name: Update release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./artifacts/authelia-authentication*.zip
tag: ${{ github.ref }}
file_glob: true
- name: Update manifest
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: main
commit_message: Update repo manifest
file_pattern: manifest.json