-
Notifications
You must be signed in to change notification settings - Fork 13
94 lines (88 loc) · 4.26 KB
/
upload.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Workflow to test automatic uploading to Sciebo
name: Upload data
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
name:
# Description to be shown in the UI
description: 'Filename'
# Default value if no value is explicitly provided
default: 'data-YYYY-MM-DD'
# Input has to be provided for the workflow to run
required: true
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "upload"
upload:
# The type of runner that the job will run on
# ubuntu latest should be 22
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Create and Upload a file containing the current date to SCIEBO
- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v6
with:
# Optional, workflow file name or ID
# If not specified, will be inferred from run_id (if run_id is specified), or will be the current workflow
workflow: createTarBall.yml
# Optional, the status or conclusion of a completed workflow to search for
# Can be one of a workflow conclusion:
# "failure", "success", "neutral", "cancelled", "skipped", "timed_out", "action_required"
# Or a workflow status:
# "completed", "in_progress", "queued"
# Use the empty string ("") to ignore status or conclusion in the search
workflow_conclusion: success
# Optional, uploaded artifact name,
# will download all artifacts if not specified
# and extract them into respective subdirectories
# https://github.com/actions/download-artifact#download-all-artifacts
name: crpropa-data
# Optional, check the workflow run to whether it has an artifact
# then will get the last available artifact from the previous workflow
# default false, just try to download from the last one
check_artifacts: false
# Optional, search for the last workflow run whose stored an artifact named as in `name` input
# default false
search_artifacts: false
# Optional, choose to skip unpacking the downloaded artifact(s)
# default false
skip_unpack: false
# Optional, choose how to exit the action if no artifact is found
# can be one of:
# "fail", "warn", "ignore"
# default fail
if_no_artifact_found: fail
- name: Display structure of downloaded files
run: ls -R
# 2024-03-11: Currently not working. Could be used as a starting point for some future updates.
#- name: Upload to sciebo
# shell: bash
# run: |
# curl -u "$SCIEBO_USR:$SCIEBO_PWD" -T "${{ github.event.inputs.name }}.tar.gz" "https://ruhr-uni-bochum.sciebo.de/public.php/webdav/${{ github.event.inputs.name }}.tar.gz" --fail
# curl -u "$SCIEBO_USR:$SCIEBO_PWD" -T "${{ github.event.inputs.name }}.tar.gz-CHECKSUM" "https://ruhr-uni-bochum.sciebo.de/public.php/webdav/${{ github.event.inputs.name }}.tar.gz-CHECKSUM" --fail
# env:
# # Login credentials are stored as encrypted secrets in the repository settings on github.
# SCIEBO_USR: ${{ secrets.SCIEBO_CRPDATA_USR }}
# SCIEBO_PWD: ${{ secrets.SCIEBO_CRPDATA_PWD}}
#
#- name: Create issue on CRPropa3 repository
# uses: actions/github-script@v7
# with:
# script: |
# const github = require('@actions/github');
# const octokit = github.getOctokit(process.env.GITHUB_TOKEN);
# const response = await octokit.rest.issues.create({
# owner: 'CRPropa',
# repo: 'CRPropa3',
# title: 'Update CRPropa data download',
# body: 'This issue was automatically created by the upload workflow of CRPropa3-data.
# Please check if the download data string is up to date and if not, update the download link in the CMakelists.txt file.
# The current download string is: ' + ${{ github.event.inputs.name }} + '.tar.gz'
# });
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}