Loading .github/workflows/build.yml +15 −22 Original line number Diff line number Diff line Loading @@ -8,8 +8,6 @@ on: - '**/*.md' - '.gitignore' - '.dockerignore' env: vers: v${{ secrets.MAJOR }}.${{ secrets.MINOR }} jobs: shellcheck: Loading Loading @@ -73,16 +71,11 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} with: tag: "$vers" title: "$vers" body: "Release $vers" bump: needs: release runs-on: ubuntu-latest steps: tag: "v${{ secrets.MAJOR }}.${{ secrets.MINOR }}" title: "v${{ secrets.MAJOR }}.${{ secrets.MINOR }}" body: "Release v${{ secrets.MAJOR }}.${{ secrets.MINOR }}" - name: Autoincrement minor version name: Increment minor version run: | echo "NEW_MINOR=$((${{ secrets.MINOR }}+1))" >> $GITHUB_ENV - Loading Loading
.github/workflows/build.yml +15 −22 Original line number Diff line number Diff line Loading @@ -8,8 +8,6 @@ on: - '**/*.md' - '.gitignore' - '.dockerignore' env: vers: v${{ secrets.MAJOR }}.${{ secrets.MINOR }} jobs: shellcheck: Loading Loading @@ -73,16 +71,11 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} with: tag: "$vers" title: "$vers" body: "Release $vers" bump: needs: release runs-on: ubuntu-latest steps: tag: "v${{ secrets.MAJOR }}.${{ secrets.MINOR }}" title: "v${{ secrets.MAJOR }}.${{ secrets.MINOR }}" body: "Release v${{ secrets.MAJOR }}.${{ secrets.MINOR }}" - name: Autoincrement minor version name: Increment minor version run: | echo "NEW_MINOR=$((${{ secrets.MINOR }}+1))" >> $GITHUB_ENV - Loading