summaryrefslogtreecommitdiff
path: root/themes/CodeIT/.github/workflows/pre-release.yml
blob: 4df109ac2b08b85bbd9cff63c75d30d5d38fd2e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: "Create pre-release"
on:
  push:
    branches:
      - master
jobs:
  pre-release:
    name: "Pre Release"
    runs-on: "ubuntu-latest"
    steps:
      - name: Set up Git repository
        uses: actions/checkout@v2
        with:
          path: "CodeIT"
          fetch-depth: 0
      - uses: "marvinpinto/action-automatic-releases@latest"
        with:
          repo_token: "${{ secrets.GITHUB_TOKEN }}"
          automatic_release_tag: "latest"
          prerelease: true
          title: "Development Build"