Skip to content
Snippets Groups Projects
Commit dbadb251 authored by Romin's avatar Romin :eye:
Browse files

Update coscine.yml

parent 9963a81b
Branches
Tags
No related merge requests found
......@@ -4,6 +4,10 @@ name: Deploy Coscine Static Site to GitHub Pages
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
# Run every day at 8 am UTC
- cron: '0 8 * * *'
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
......@@ -26,11 +30,9 @@ jobs:
# Build job
build:
runs-on: ubuntu-latest
# Put your Project and Resource names here. Also make sure you have set
# your Coscine API Token as a repository variable in the repository settings!
env:
PROJECT_NAME: "Solaris"
RESOURCE_NAME: "Chest X-Ray CNN"
PROJECT_NAME: ${{vars.COSCINE_PROJECT_NAME}}
RESOURCE_NAME: ${{vars.COSCINE_RESOURCE_NAME}}
COSCINE_API_TOKEN: ${{vars.COSCINE_API_TOKEN}}
steps:
- run: python -V
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment