Add opt-in for premium content. #2622
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Products to STAGING fiware-ops.github.io | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
refresh-assets: | |
name: Refresh Assets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Check assets | |
continue-on-error: true | |
run: | | |
rm -rf directories | |
cp -r ./assets/directories ./directories | |
- name: copy file via ssh password | |
uses: appleboy/scp-action@master | |
continue-on-error: true | |
with: | |
host: ${{ secrets.HOST }} | |
port: ${{ secrets.PORT }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.SSH_KEY }} | |
target: ${{ secrets.SSH_DIR }} | |
source: directories/** | |
refresh-page-data: | |
name: Refresh Staging Files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: main | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: staging | |
ref: gh-pages | |
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token | |
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | |
- name: Create local changes | |
run: | | |
cp -R main/showcase staging | |
cp -R main/marketplace staging | |
cp -R main/directories staging | |
- name: Commit files | |
continue-on-error: true | |
run: | | |
cd staging | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add -A * | |
git commit -m "Update Staging" -a | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
continue-on-error: true | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
directory: staging |