We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90cc570 commit 7d62a69Copy full SHA for 7d62a69
2 files changed
.github/workflows/docs.yml
@@ -44,10 +44,10 @@ jobs:
44
github_token: ${{ secrets.GITHUB_TOKEN }}
45
publish_dir: docs/_build/*
46
publish_branch: gh-pages
47
- destination_dir: github.ref_name
+ destination_dir: ${{ github.ref_name }}
48
- name: create symlink stable to new version
49
if: github.ref_type == 'tag' && startswith(github.ref, 'refs/tags/v')
50
run: |
51
rm stable
52
- ln -s "${{ github.ref_name }}" stable
+ ln -s ${{ github.ref_name }} stable
53
ls -la
.github/workflows/weekly.yml
@@ -7,10 +7,9 @@
7
name: Weekly Tests
8
9
on:
10
- workflow_dispatch:
11
schedule:
12
# At 00:00 on Monday
13
- - cron: "0 0 * * MON"
+ - cron: "14 36 * * MON"
14
15
jobs:
16
vetiver_main_pins_main:
0 commit comments