diff --git a/.gitea/workflows/auto_release.yaml b/.gitea/workflows/auto_release.yaml new file mode 100644 index 0000000..c595040 --- /dev/null +++ b/.gitea/workflows/auto_release.yaml @@ -0,0 +1,16 @@ +# Trigger the workflow on milestone events +on: + milestone: + types: [closed] +name: Milestone Closure +jobs: + create-release-notes: + runs-on: alpine:latest + steps: + - uses: actions/checkout@master + - name: Create Release Notes + uses: docker://decathlon/release-notes-generator-action:2.0.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + OUTPUT_FOLDER: temp_release_notes + USE_MILESTONE_TITLE: "true" \ No newline at end of file diff --git a/.gitea/workflows/docker_builder_latest.yaml b/.gitea/workflows/docker_builder_latest.yaml index 374bfa0..93df682 100644 --- a/.gitea/workflows/docker_builder_latest.yaml +++ b/.gitea/workflows/docker_builder_latest.yaml @@ -15,7 +15,7 @@ jobs: steps: - name: Set up and Install Dependencies run: | - apk update && apk add --no-cache mariadb-connector-c-dev gcc musl-dev nodejs npm git docker libffi-dev libffi curl + apk update && apk add --no-cache mariadb-connector-c-dev gcc musl-dev nodejs npm git docker libffi-dev libffi curl libxml2 libxslt - name: Check out repository code uses: actions/checkout@v4