From 419404dcb6fb87af3ce83eadb563b0ec690edfdc Mon Sep 17 00:00:00 2001 From: Jeffery Date: Thu, 7 May 2026 13:58:22 +0000 Subject: [PATCH] Initial commit --- .gitea/workflows/master.yaml | 27 +++++++++++++++++++++++++++ Dockerfile | 10 ++++++++++ action.yaml | 20 ++++++++++++++++++++ entrypoint.sh | 11 +++++++++++ 4 files changed, 68 insertions(+) create mode 100644 .gitea/workflows/master.yaml create mode 100644 Dockerfile create mode 100644 action.yaml create mode 100644 entrypoint.sh diff --git a/.gitea/workflows/master.yaml b/.gitea/workflows/master.yaml new file mode 100644 index 0000000..b54c903 --- /dev/null +++ b/.gitea/workflows/master.yaml @@ -0,0 +1,27 @@ +on: + push: + branches: + - master +jobs: + version: + name: "CD > 計算版本號" + runs-on: ubuntu + outputs: + version: ${{ steps.version.outputs.version }} + steps: + - name: 計算版本號 + id: version + uses: https://gitea.jsc.idv.tw/actions/calculate-version@${{ vars.ACTION_CALCULATE_VERSION }} + release: + name: "CD > 發布專案" + runs-on: ubuntu + needs: version + steps: + - name: 發布專案 + uses: akkuman/gitea-release-action@${{ vars.ACTION_RELEASE_VERSION }} + with: + tag_name: "v${{ needs.version.outputs.version }}" + - name: 清理成品 + uses: https://gitea.jsc.idv.tw/actions/cleanup-release@${{ vars.ACTION_CLEANUP_RELEASE_VERSION }} + with: + RUNNER_TOKEN: ${{ secrets.RUNNER_TOKEN }} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..af3dacb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM alpine:latest + +# 安裝必要的工具 +RUN apk add --no-cache --no-check-certificate bash + +COPY entrypoint.sh /entrypoint.sh + +RUN chmod +x /entrypoint.sh + +ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file diff --git a/action.yaml b/action.yaml new file mode 100644 index 0000000..f8849d0 --- /dev/null +++ b/action.yaml @@ -0,0 +1,20 @@ +name: 'Docker Action Template' +description: 'Docker Action 範本' +author: 'Jeffery' +inputs: + runner_token: + description: 'Gitea Runner Token' + required: true + text: + description: '輸入的文字' + default: "Hello, World!" +outputs: + text: + description: '輸出的文字' +runs: + using: 'docker' + image: 'Dockerfile' + env: + GITEA_SERVER_URL: ${{ gitea.server_url }} + GITEA_REPOSITORY: ${{ gitea.repository }} + RUNNER_TOKEN: ${{ inputs.runner_token || secrets.GITEA_TOKEN || secrets.RUNNER_TOKEN }} \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000..378b552 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +echo "Gitea Server Url: $GITEA_SERVER_URL" + +echo "Gitea Repository: $GITEA_REPOSITORY" + +echo "Gitea Runner Token: $RUNNER_TOKEN" + +echo "Input Text: $INPUT_TEXT" + +echo "text=$INPUT_TEXT" >> "$GITHUB_OUTPUT" \ No newline at end of file