Files
hasaddon/.github/workflows/push-to-beta.yml
T
2022-01-20 22:45:30 +01:00

25 lines
635 B
YAML

# This workflow pushes the main branch to the beta repo
name: Push to beta repo
on:
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
push:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a set of commands using the runners shell
- name: Pushes to beta repository
run: pwd