keycloak-scim/.forgejo/workflows/main.yml
Hugo Renard f93c863e00
Some checks failed
/ build (push) Successful in 6s
/ release (push) Failing after 2s
wip
2024-11-26 17:01:23 +01:00

20 lines
661 B
YAML

on: [push, tag]
jobs:
build:
runs-on: native
steps:
- uses: actions/checkout@v4
- run: nix build .# --out-link keycloak-scim.jar
- uses: actions/upload-artifact@v3
with:
path: keycloak-scim.jar
release:
runs-on: native
needs: [build]
if: github.ref_type == 'tag'
steps:
- uses: actions/download-artifact@v3
- run: |
export GITEA_SERVER_TOKEN=${{ secrets.GITHUB_TOKEN }}
tea login add --url ${{ env.GITHUB_SERVER_URL }}
tea release create --asset ./artifact --repo "${{ github.repository }}" --tag "${{ github.ref_name }}" --title "${{ github.ref_name }}"