Skip to content

Commit d339144

Browse files
authored
Merge pull request #59 from nventive/dev/cama/UpdateVersion
ci: update versions of CI/CD tasks
2 parents 2a547ab + 5b3f75c commit d339144

10 files changed

Lines changed: 11 additions & 10 deletions

build/steps-build-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,6 @@ steps:
110110
condition: always()
111111
artifact: $(ArtifactName)
112112

113-
- task: PostBuildCleanup@3
113+
- task: PostBuildCleanup@4
114114
displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!'
115115
condition: always()

build/steps-build-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,6 @@ steps:
135135
condition: always()
136136
artifact: $(ArtifactName)
137137

138-
- task: PostBuildCleanup@3
138+
- task: PostBuildCleanup@4
139139
displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!'
140140
condition: always()

build/steps-build-release-notes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ steps:
1010
- powershell: New-Item -Path '$(ArtifactName)' -ItemType Directory
1111
displayName: Create ReleaseNotes folder
1212

13-
- task: nventiveReleaseNotesCompiler@5
13+
- task: nventiveReleaseNotesCompiler@6
1414
displayName: 'Compile Release Notes'
1515
inputs:
1616
EnvironmentName: $(ApplicationEnvironment)

build/steps-build-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ steps:
5858
condition: always()
5959
artifact: $(ArtifactName)
6060

61-
- task: PostBuildCleanup@3
61+
- task: PostBuildCleanup@4
6262
displayName: 'Post-Build cleanup: Cleanup files to keep build server clean!'
6363
condition: always()

build/steps-build-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ steps:
4141
condition: always()
4242
artifact: $(ArtifactName)
4343

44-
- task: PostBuildCleanup@3
44+
- task: PostBuildCleanup@4
4545
displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!'
4646
condition: always()

build/templates/gitversion.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
default: '$(Build.SourcesDirectory)/build/gitversion-config.yml'
55

66
steps:
7-
- task: gitversion/setup@0
7+
- task: gitversion/setup@3
88
retryCountOnTaskFailure: 3
99
inputs:
1010
versionSpec: '5.12.0'
1111
displayName: 'Install GitVersion'
1212

13-
- task: gitversion/execute@0
13+
- task: gitversion/execute@3
1414
inputs:
1515
useConfigFile: true
1616
configFilePath: ${{ parameters.configFilePath }}

build/templates/mobsf-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,6 @@ steps:
144144
ArtifactName: ${{parameters.artifactName}}_Security_Reports
145145
publishLocation: 'Container'
146146

147-
- task: PostBuildCleanup@3
147+
- task: PostBuildCleanup@4
148148
displayName: 'Post-Build Cleanup: Cleanup files to keep build server clean!'
149149
condition: always()

src/cli/.azuredevops/stage-publish-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ jobs:
3838
projectDirectory: '${{ parameters.pathToSrc }}/cli'
3939
condition: failed()
4040

41-
- task: PostBuildCleanup@3
41+
- task: PostBuildCleanup@4
4242
displayName: 'Post-Build cleanup : Cleanup files to keep build server clean!'
4343
condition: always()

src/cli/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Prefix your items with `(Template)` if the change is about the template and not
77

88
## 0.24.2
99
- General improvements, including sample documentation (see `src/cli/example/README.md`).
10+
- Update versions of CI/CD tasks.
1011

1112
## 0.24.1
1213
- Add `getFromStream` to have ViewModel properties that automatically update based on `Stream` sources.

src/cli/example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The `flutter_application_generator` source code includes a complete working example in the `src/app/` folder. It's a simple joke browser app that uses the Reddit API to display jokes posted to the `r/dadjokes` subreddit and allows you to manage favorites (add / remove). It also includes an authentication example.
44

5-
Before running the example, it's neccessary to run the `build_runner` package in order to create the required generated files. Using your terminal of choice, navigate to the `src/app/` folder and run the following:
5+
Before running the example, it's necessary to run the `build_runner` package in order to create the required generated files. Using your terminal of choice, navigate to the `src/app/` folder and run the following:
66

77
```bash
88
dart run build_runner build --delete-conflicting-outputs

0 commit comments

Comments
 (0)