Skip to content

A Github action that will continuously sync a project to WVS.io on push

License

Notifications You must be signed in to change notification settings

WevrVirtualStudio/wvs-github-bridge-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WVS Github Bridge

This action will sync a Github repository into WVS.io on push.

Environment Variables

WVS_USERNAME

Required The wvs.io username used to push

WVS_PERSONAL_ACCESS_TOKEN

Required The wvs.io personal access token for the user. Can be generated here https://wvs.io/-/profile/personal_access_tokens.

Inputs

wvs-repo

Required The wvs.io repository url.

Outputs

time

The time this action ran.

Example usage

name: wvs-github-bridge-action
run-name: WVS Bridge Action
on: [push]
jobs:
  bridge-to-wvs:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0
          lfs: 'true'
          submodules: 'recursive'
      - uses: WevrVirtualStudio/wvs-github-bridge-action@main
        with:
          wvs-repo: 'https://wvs.io/<mygroup>/<myproject>.git'
        env:
          WVS_USERNAME: "wvsuser"
          WVS_PERSONAL_ACCESS_TOKEN: ${{ secrets.WVS_PERSONAL_ACCESS_TOKEN }}

About

A Github action that will continuously sync a project to WVS.io on push

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published