Some checks failed
Test / test (push) Has been cancelled
- Includes complete dockurr/windows source (not just FROM image) - Added openssh-client and sshpass to Dockerfile - Added SSH key for Windows VM access - Added VPN automation scripts (vpn-login.js, socks5.js, vpn.bat) - Added Windows setup scripts (install-nodejs.ps1, setup-autologin-sshd.ps1, setup-ssh-keys.ps1) - Added rego-startup.sh for script deployment and network setup - Scripts auto-copy to shared folder on container start 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
653 B
YAML
27 lines
653 B
YAML
name: Update
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- readme.md
|
|
- README.md
|
|
- .github/workflows/hub.yml
|
|
|
|
jobs:
|
|
dockerHubDescription:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout repo
|
|
uses: actions/checkout@v6
|
|
-
|
|
name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@v5
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repository: ${{ secrets.DOCKERHUB_REPO }}
|
|
short-description: ${{ github.event.repository.description }}
|
|
readme-filepath: ./readme.md
|