mirror of
https://github.com/PR0M3TH3AN/The-Eternal-Word.git
synced 2025-09-07 14:58:53 +00:00
22 lines
467 B
YAML
22 lines
467 B
YAML
name: deploy-to-skynet
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Deploy to Skynet
|
|
uses: skynetlabs/deploy-to-skynet-action@main
|
|
|
|
with:
|
|
upload-dir: src
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
registry-seed: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' && secrets.REGISTRY_SEED || '' }}
|