trying to use the steps instead of the full action
Some checks failed
/ weblog.lol (push) Failing after 7s
Some checks failed
/ weblog.lol (push) Failing after 7s
This commit is contained in:
parent
eaff0ca062
commit
2fd67ebe6e
1 changed files with 5 additions and 2 deletions
|
@ -2,14 +2,17 @@ on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
weblog_import:
|
weblog_import:
|
||||||
runs-on: ubuntu-latest
|
runs-on: docker
|
||||||
name: weblog.lol
|
name: weblog.lol
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 2
|
fetch-depth: 2
|
||||||
|
- run: wget -O weblog-import.php https://api.omg.lol/address/adam/weblog/github-action
|
||||||
|
shell: bash
|
||||||
- id: weblog_import
|
- id: weblog_import
|
||||||
uses: https://github.com/neatnik/weblog.lol@v1
|
run: php -f weblog-import.php $ADDRESS $WEBLOG_API_KEY
|
||||||
|
shell: bash
|
||||||
env:
|
env:
|
||||||
ADDRESS: deathau
|
ADDRESS: deathau
|
||||||
WEBLOG_API_KEY: ${{ secrets.WEBLOG_API_KEY }}
|
WEBLOG_API_KEY: ${{ secrets.WEBLOG_API_KEY }}
|
Loading…
Reference in a new issue