-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (31 loc) · 960 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Release
# Triggering the workflow on pushes to main
on:
push:
branches:
- main
workflow_dispatch:
jobs:
# Release VS Code extension
release-vscode:
uses: './.github/workflows/release-vscode.yml'
# Rest of the repository
rest:
name: Rest
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v4
# Bump version and update changelog
- name: Bump version and update changelog
id: version-bump
uses: Enterwell/ChangelogManager-GitHub-Action@v3
with:
should-bump-version: true
path-to-project-file: Enterwell.CI.Changelog/Enterwell.CI.Changelog.csproj
# Committing new changes
- name: Commit changes
uses: EndBug/[email protected]
with:
message: "[skip ci] [version-bump] Automated commit for version ${{ steps.version-bump.outputs.bumped-semantic-version }}"