mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-14 15:04:03 -08:00
7b89595658
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.8.1 to 4.0.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](5e21ff4d9b...8f152de45c
)
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
27 lines
708 B
YAML
27 lines
708 B
YAML
name: Social
|
|
on:
|
|
release:
|
|
types: [published]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
bluesky:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Node ⬇️
|
|
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65
|
|
with:
|
|
node-version: 18
|
|
- name: Checkout code 👋
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
- name: Skyt 🌤️
|
|
working-directory: scripts/bluesky
|
|
env:
|
|
BLUESKY_IDENTIFIER: ${{ secrets.BLUESKY_IDENTIFIER }}
|
|
BLUESKY_PASSWORD: ${{ secrets.BLUESKY_PASSWORD }}
|
|
OWNER: JanDeDobbeleer
|
|
REPO: oh-my-posh
|
|
run: |
|
|
npm install
|
|
node main.js
|