Add linkedin to social media footer section. #9662
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
# Build Jekyll Page and publish it to GitHub Pages | |
name: Build Jekyll Page Preview | |
on: | |
push: | |
branches: [ develop ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: arduino/setup-task@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check out Site Repository 📄 | |
uses: actions/checkout@v3 | |
- name: Check out Model Repository 🗃️ | |
uses: actions/checkout@v3 | |
with: | |
repository: 'AKSW/leipzig.dataweek.de-model' | |
path: '.model' | |
- name: Check out iCal Repository 📅 | |
uses: actions/checkout@v3 | |
with: | |
repository: 'AKSW/ical.dataweek.de' | |
ref: 'page-live' | |
path: '.ical' | |
- name: Scale Pictures 🖼️ | |
env: | |
INSTALL_PICTURES_SCALE_PRECONDITIONS: "True" | |
run: task pictures:scale | |
- name: Run CI Tasks ⚙️ | |
env: | |
OAUTH_CLIENT_SECRET: ${{ secrets.OAUTH_CLIENT_SECRET }} | |
run: task ci | |
- name: Deploy 🚀 | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./_site | |
publish_branch: page-staging # default: gh-pages |