We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7560851 commit 5a9b34cCopy full SHA for 5a9b34c
.github/workflows/build.yml
@@ -59,3 +59,25 @@ jobs:
59
flags: integration-tests-${{ matrix.os }}
60
fail_ci_if_error: true
61
token: ${{ secrets.CODECOV_TOKEN }}
62
+
63
+ release:
64
+ needs: [ build, integration-test ]
65
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
66
+ runs-on: ubuntu-latest
67
+ permissions:
68
+ contents: write
69
+ steps:
70
+ - name: Checkout code
71
+ uses: actions/checkout@v4
72
+ with:
73
+ fetch-depth: 0
74
75
+ - name: Bump version
76
+ id: version
77
+ uses: paulhatch/semantic-version@v5.4.0
78
79
+ - name: Create GitHub tag and release
80
+ uses: softprops/action-gh-release@v2.0.5
81
82
+ tag_name: ${{ steps.version.outputs.version_tag }}
83
+ generate_release_notes: true
.github/workflows/release.yml
0 commit comments