mirror of
https://github.com/dewomser/Wettervorhersage.git
synced 2026-03-10 22:44:45 +01:00
27 lines
559 B
YAML
27 lines
559 B
YAML
name: Download Artifacts
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
download-artifacts:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: List artifacts
|
|
id: list-artifacts
|
|
uses: MichaelMelena/list-artifacts@v1.0.1
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
repository: ${{ github.repository }}
|
|
|
|
- name: Download artifacts
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: artifacts
|
|
run: ls -R
|