PHP Classes

File: .github/workflows/subsplit.yml

Recommend this page to a friend!
  Packages of Luke Towers   Winter   .github/workflows/subsplit.yml   Download  
File: .github/workflows/subsplit.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Winter
Content management system that uses MVC
Author: By
Last change:
Date: 7 months ago
Size: 930 bytes
 

Contents

Class file image Download
name: Module sub-split on: push: create: delete: jobs: split: name: Sub-split runs-on: ubuntu-latest container: wintercms/cli:0.3.4 env: WINTER_CLI_GITHUB_TOKEN: ${{ secrets.WINTER_SPLIT_TOKEN }} steps: - name: Create tag if: github.event_name == 'create' && github.ref_type == 'tag' run: winter split -a "${{ github.ref_name }}" - name: Delete branch if: github.event_name == 'delete' && github.ref_type == 'branch' run: winter split --remove-branch="${{ github.event.ref }}" - name: Delete tag if: github.event_name == 'delete' && github.ref_type == 'tag' run: winter split --remove-tag="${{ github.event.ref }}" - name: Push if: github.event_name == 'push' run: winter split -b "${{ github.ref_name }}"