@@ -29,12 +29,14 @@ jobs:
2929 generate_infos :
3030 runs-on : ubuntu-latest
3131 outputs :
32- sha : ${{ steps.tag.outputs.sha }}
33- repo : ${{ steps.tag.outputs.repo }}
34- owner : ${{ steps.tag.outputs.owner }}
35- version : ${{ steps.tag.outputs.version }}
36- sha-short : ${{ steps.tag.outputs.sha-short }}
37- release-id : ${{ steps.tag.outputs.release-id }}
32+ sha : ${{ steps.tag.outputs.ACI_PR_SHA }}
33+ repo : ${{ steps.tag.outputs.ACI_REPO }}
34+ owner : ${{ steps.tag.outputs.ACI_OWNER }}
35+ sha-short : ${{ steps.tag.outputs.ACI_PR_SHA_SHORT }}
36+ version : ${{ steps.tag.outputs.ACI_NEXT_VERSION }}
37+ latest-version : ${{ steps.tag.outputs.ACI_LATEST_VERSION }}
38+ next-version : ${{ steps.tag.outputs.ACI_NEXT_VERSION }}
39+ release-id : ${{ steps.tag.outputs.ACI_RELEASE_ID }}
3840 steps :
3941 - name : Check out the repo
4042 uses : actions/checkout@v3
4446 uses : fullstack-devops/awesome-ci-action@main
4547
4648 - name : create release
47- run : awesome-ci release create -merge-sha ${{ github.sha }}
49+ id : tag
50+ run : awesome-ci release create --merge-sha ${{ github.sha }}
4851 env :
4952 GITHUB_TOKEN : ${{ secrets.token }}
50- - name : export infos
51- id : tag
52- shell : bash
53- run : |
54- echo "::set-output name=version::${ACI_VERSION}"
55- echo "::set-output name=release-id::$ACI_RELEASE_ID"
56- echo "::set-output name=sha::$ACI_PR_SHA"
57- echo "::set-output name=sha-short::$ACI_PR_SHA_SHORT"
58- echo "::set-output name=owner::$ACI_OWNER"
59- echo "::set-output name=repo::$ACI_REPO"
0 commit comments