diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6aad9c3..170382e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -26,23 +26,20 @@ jobs: with: submodules: recursive - - name: Get tags - run: git fetch --tags - - uses: docker/login-action@v3 with: registry: ${{ vars.WS_DOCKER_REGISTRY }} username: ${{ vars.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Get last tag - run: echo "TAG_LAST=$(git describe --tags --abbrev=0 --always)" >> $GITHUB_ENV +# - name: Get last tag +# run: echo "TAG_LAST=$(git describe --tags --abbrev=0 --always)" >> $GITHUB_ENV - name: "Build Changelog" id: build_changelog uses: mikepenz/release-changelog-builder-action@v5 with: - toTag: "${{ github.ref }}" +# toTag: "${{ github.ref }}" mode: "HYBRID" outputFile: "CHANGELOG.md" @@ -70,12 +67,6 @@ jobs: WS_TASKS_DB_PASS: ${{ secrets.WS_TASKS_DB_PASS }} WS_TASKS_SECRET_KEY: ${{ secrets.WS_TASKS_SECRET_KEY }} - - name: Release changelog - uses: actions/upload-artifact@v4 - with: - name: "${{ github.sha }} Changelog" - path: CHANGELOG.md - - name: Deploy env: ENV: ${{ vars.ENV }}