keycloak-theme/.github/workflows/ci.yaml

56 lines
2 KiB
YAML
Raw Normal View History

2022-09-06 17:22:23 +00:00
name: ci
on:
2024-06-06 03:26:06 +00:00
push:
branches:
- main
pull_request:
branches:
- main
2022-09-06 17:22:23 +00:00
jobs:
2024-06-06 03:26:06 +00:00
test:
runs-on: ubuntu-latest
steps:
2024-06-06 07:42:01 +00:00
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
2024-06-06 03:26:06 +00:00
- uses: bahmutov/npm-install@v1
2024-06-10 14:10:46 +00:00
- run: npm run build-keycloak-theme
2022-09-06 17:22:23 +00:00
2024-06-06 03:26:06 +00:00
check_if_version_upgraded:
name: Check if version upgrade
if: github.event_name == 'push'
runs-on: ubuntu-latest
needs: test
outputs:
from_version: ${{ steps.step1.outputs.from_version }}
to_version: ${{ steps.step1.outputs.to_version }}
is_upgraded_version: ${{ steps.step1.outputs.is_upgraded_version }}
2024-06-22 01:36:24 +00:00
is_pre_release: ${{steps.step1.outputs.is_pre_release }}
2024-06-06 03:26:06 +00:00
steps:
2024-06-20 02:00:59 +00:00
- uses: garronej/ts-ci@v2.1.5
2024-06-06 03:26:06 +00:00
id: step1
with:
action_name: is_package_json_version_upgraded
branch: ${{ github.head_ref || github.ref }}
2023-03-17 16:13:20 +00:00
2024-06-06 03:26:06 +00:00
create_github_release:
runs-on: ubuntu-latest
needs: check_if_version_upgraded
2024-06-16 16:40:28 +00:00
if: needs.check_if_version_upgraded.outputs.is_upgraded_version == 'true'
2024-06-06 03:26:06 +00:00
steps:
2024-06-06 07:42:01 +00:00
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
2024-06-06 03:26:06 +00:00
- uses: bahmutov/npm-install@v1
2024-06-10 14:10:46 +00:00
- run: npm run build-keycloak-theme
2024-06-06 07:42:01 +00:00
- uses: softprops/action-gh-release@v2
2024-06-06 03:26:06 +00:00
with:
name: Release v${{ needs.check_if_version_upgraded.outputs.to_version }}
tag_name: v${{ needs.check_if_version_upgraded.outputs.to_version }}
target_commitish: ${{ github.head_ref || github.ref }}
generate_release_notes: true
draft: false
2024-08-15 21:34:30 +00:00
#prerelease: ${{ needs.check_if_version_upgraded.outputs.is_pre_release == 'true' }}
2024-06-10 14:10:46 +00:00
files: dist_keycloak/keycloak-theme-*.jar
2024-06-06 03:26:06 +00:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}