Skip to content

Commit 09031e9

Browse files
committed
Merge branch 'deploy'
2 parents f2ea5ce + e807555 commit 09031e9

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

README.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ https://ci.appveyor.com/project/thequackdaddy/openblasr
6666
Pick the most recent build that succeeded and select the Artifact tab to
6767
download it.
6868

69-
Please note that it is important to set the ``PATH`` so that the _Rtools ``gcc``
69+
Please note that it is important to set the ``PATH`` so that the Rtools_ ``gcc``
7070
compiler and ``make`` will be found before any other installation on the sytem.
7171
Additionally, ``pdflatex.exe`` needs to be in the path. ``MiKTeX`` needs
7272
a few additional packages to install everything, so be sure to either download
@@ -83,6 +83,15 @@ https://ci.appveyor.com/project/thequackdaddy/r-openblas/
8383

8484
Select the most recent successful build and download the executable artifact.
8585

86+
.. code-block::
87+
88+
cd r-source
89+
git checkout -t origin/tags/<version number>
90+
cd ..
91+
git add r-source
92+
git commit -m "Updated OpenBLAS"
93+
git push origin <branchname>
94+
8695
.. _openblas: http://www.openblas.net/
8796
.. _R: https://www.r-project.org/
8897
.. _Rtools: https://cran.r-project.org/bin/windows/Rtools/

appveyor.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,14 @@ build_script:
4848

4949
artifacts:
5050
- path: r-source/src/gnuwin32/installer/R*-win*.exe
51+
52+
deploy:
53+
description: 'This is R, but compiled for windwos using OpenBLAS'
54+
provider: GitHub
55+
auth_token:
56+
secure: 6VduGFAfk0LDLzJDnzCakW7vldMxkkaw4OHCYkFqyecDV9sKE+MdEP5Go4zpmt3c
57+
artifact: /.*\.exe/
58+
draft: false
59+
prerelease: false
60+
on:
61+
appveyor_repo_tag: true # deploy on tag push only

0 commit comments

Comments
 (0)