diff --git a/.gitea/workflows/master.yaml b/.gitea/workflows/master.yaml index 6a6dce8..475eba2 100644 --- a/.gitea/workflows/master.yaml +++ b/.gitea/workflows/master.yaml @@ -3,7 +3,7 @@ on: branches: - master jobs: - calculate: + version: name: "CD > 計算版本號" runs-on: ubuntu outputs: @@ -12,12 +12,12 @@ jobs: - name: 計算版本號 id: version uses: https://gitea.jsc.idv.tw/actions/calculate-version@${{ vars.ACTION_CALCULATE_VERSION }} - cd: + release: name: "CD > 發布專案" runs-on: ubuntu - needs: calculate + needs: version steps: - name: 發布專案 uses: akkuman/gitea-release-action@${{ vars.ACTION_RELEASE_VERSION }} with: - tag_name: "v${{ needs.calculate.outputs.version }}" \ No newline at end of file + tag_name: "v${{ needs.version.outputs.version }}" \ No newline at end of file