23 lines
618 B
YAML
23 lines
618 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
weblog_import:
|
|
runs-on: ubuntu-latest
|
|
name: weblog.lol
|
|
steps:
|
|
- name: Install Act dependencies
|
|
if: ${{ env.ACT }}
|
|
run: |
|
|
apt update && apt install software-properties-common apt-transport-https ca-certificates lsb-release -y
|
|
- name: Install dependencies
|
|
run: |
|
|
apt update && apt install php
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
- id: weblog_import
|
|
uses: neatnik/weblog.lol@v1
|
|
env:
|
|
ADDRESS: emma
|
|
WEBLOG_API_KEY: ${{ secrets.WEBLOG_API_KEY }}
|