Skip to content

Commit

Permalink
ci: add workflow to update version (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
BusHero authored Sep 9, 2023
1 parent e4451c3 commit 508f892
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/update-version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Release"
on:
workflow_dispatch:

jobs:
changes:
name: features
runs-on: ubuntu-latest
outputs:
templates: ${{ steps.changed_files.outputs.templates }}
features: ${{ steps.changed_files.outputs.features }}
changesToNuke: ${{ steps.changed_files.outputs.changesToNuke }}
steps:
- uses: actions/checkout@v3
name: pull branch
with:
fetch-depth: 0
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: "Cache: .nuke/temp, ~/.nuget/packages"
uses: actions/cache@v3
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj', '**/Directory.Packages.props') }}
- name: find changed templates & features
id: changed_files
run: ./build.sh ListTemplatesAndFeatures -GithubOutput "$GITHUB_OUTPUT"

0 comments on commit 508f892

Please sign in to comment.