Skip to content

Commit b246587

Browse files
committed
upload artifacts action
1 parent fa5a4ee commit b246587

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/artifacts.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Upload Artifacts
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
7+
jobs:
8+
upload-artifacts:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Upload artifact
12+
uses: actions/upload-artifact@v3
13+
with:
14+
name: utils
15+
path: ${{ github.action_path }}/utils
16+
repository: ${{ github.repository }}
17+
ref: main

.github/workflows/collect_weather_data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch: # Permette l'avvio manuale del workflow
88

99
jobs:
10-
update-stats:
10+
collect_weather_data:
1111
runs-on: ubuntu-latest
1212

1313
steps:

0 commit comments

Comments
 (0)