mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
23 lines
No EOL
515 B
YAML
23 lines
No EOL
515 B
YAML
name: Deploy preview environment
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
preview:
|
|
runs-on: ubuntu-latest
|
|
permissions: write-all
|
|
steps:
|
|
- name: Context
|
|
uses: okteto/context@latest
|
|
with:
|
|
token: ${{ secrets.OKTETO_TOKEN }}
|
|
|
|
- name: Deploy preview environment
|
|
uses: okteto/deploy-preview@latest
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
name: pr-${{ github.event.number }}-unixfox
|
|
timeout: 15m |