Skip to content

fix(deps): bump pion/stun to v3.1.5 and pion/dtls to v3.1.4 (#1075) #382

fix(deps): bump pion/stun to v3.1.5 and pion/dtls to v3.1.4 (#1075)

fix(deps): bump pion/stun to v3.1.5 and pion/dtls to v3.1.4 (#1075) #382

Workflow file for this run

name: Github Pages
on:
push:
branches: [ master ]
# Pull requests build the docs so breakage is caught before merge. They must
# never deploy: the Deploy step below is guarded on a push to master.
pull_request:
paths:
- 'docs/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.26
- name: Build 🔧
run: |
cd docs && make build
mv public ../
- name: Deploy 🚀
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: public