We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77b8148 commit 3a983b8Copy full SHA for 3a983b8
.github/workflows/release.yml
@@ -2,3 +2,29 @@ on:
2
push:
3
tags:
4
- 'v*'
5
+name: Release
6
+
7
+jobs:
8
+ pages:
9
+ name: Publish GitHub Pages
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@master
14
+ with:
15
+ fetch-depth: 3
16
+ - name: Build
17
+ run: |
18
+ git clone --depth=1 https://github.com/wp-content-framework/travis-ci.git travis-ci
19
+ bash travis-ci/bin/deploy/gh-pages.sh
20
+ env:
21
+ CI: 1
22
+ TRAVIS_BUILD_DIR: ${{ github.workspace }}
23
+ GH_PAGES_TITLE: jQuery Marker Animation
24
+ GH_PAGES_TRACKING_ID: UA-78163306-3
25
+ - name: Deploy
26
+ uses: JamesIves/github-pages-deploy-action@master
27
28
+ ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
29
+ BRANCH: gh-pages
30
+ FOLDER: gh-pages
0 commit comments