Update sidebar.html #370
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: FetchMeetup | |
on: | |
schedule: | |
- cron: '45 8 * * *' | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: lein deps | |
- name: Fetch Infos from Meetup | |
run: lein run | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e | |
with: | |
ruby-version: '2.4' | |
bundler-cache: true | |
- name: Build Website | |
run: bundle exec jekyll build -V | |
- name: Upload to Server | |
uses: Creepios/[email protected] | |
with: | |
host: ${{ secrets.HOST }} | |
port: 22 | |
username: ${{ secrets.USERNAME }} | |
password: ${{ secrets.PASSWORD }} | |
localPath: '_site/' | |
remotePath: ${{ secrets.PATH }} |