Skip to content

Commit 654db14

Browse files
committed
Changed incorrect path in workflow
1 parent 61de792 commit 654db14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Build Web Application
7373
run: flutter build web
7474
- name: Archive Artifact
75-
uses: actions/upload-artifact@master
75+
uses: actions/upload-artifact@v3.1.2
7676
with:
7777
name: web-build
7878
path: example/build/web
@@ -100,7 +100,7 @@ jobs:
100100
- name: Build Android Application
101101
run: flutter build apk
102102
- name: Archive Artifact
103-
uses: actions/upload-artifact@master
103+
uses: actions/upload-artifact@v3.1.2
104104
with:
105105
name: apk-build
106106
path: example/build/app/outputs/apk/release
@@ -128,10 +128,10 @@ jobs:
128128
- name: Build Windows Application
129129
run: flutter build windows
130130
- name: Create Windows Application Installer
131-
run: iscc "tool/windowsApplicationInstallerSetup.iss"
131+
run: iscc "windowsApplicationInstallerSetup.iss"
132132
working-directory: .
133133
- name: Archive Artifact
134-
uses: actions/upload-artifact@master
134+
uses: actions/upload-artifact@v3.1.2
135135
with:
136136
name: exe-build
137137
path: windowsTemp/WindowsApplication.exe

0 commit comments

Comments
 (0)