Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XS✔ ◾ Update actions/upload-artifact #718

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/SSW.SophieBot.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
# Upload bot models artifact
- name: Upload bot models artifact
if: env.BUILD_FLOW == 'composer'
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
with:
name: "Bot_Models_${{ github.run_id }}"
path: ${{ env.BOT_PROJECT_DIR }}/generated
Expand All @@ -132,15 +132,15 @@ jobs:

# Upload webapp artifact
- name: Upload webapp artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
with:
name: "Bot_Webapp_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/deploy
if-no-files-found: error

# Upload LUIS migrator artifact
- name: Upload LUIS migrator artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
with:
name: "LUIS_Migrator_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/luis-migrator
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/SSW.SophieBot.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
# Upload bot models artifact
- name: Upload bot models artifact
if: env.BUILD_FLOW == 'composer'
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
with:
name: "Bot_Models_${{ github.run_id }}"
path: ${{ env.BOT_PROJECT_DIR }}/generated
Expand All @@ -122,15 +122,15 @@ jobs:

# Upload webapp artifact
- name: Upload webapp artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
with:
name: "Bot_Webapp_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/deploy
if-no-files-found: error

# Upload LUIS migrator artifact
- name: Upload LUIS migrator artifact
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
with:
name: "LUIS_Migrator_${{ github.run_id }}"
path: ${{ env.OUTPUT_DIR }}/luis-migrator
Expand Down