summaryrefslogtreecommitdiff
path: root/.github/workflows/tag-release.yaml
blob: 2a375e037538dc9e716cedc9c080eb111e8cbf2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Tag a Build

on:
  # schedule event triggers always run on the default branch
  # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
  schedule:
    # run "nightly" builds on default branch every mon/wed/fri
    - cron: "21 2 * * 2,4,6"     # 2:21am UTC tues/thurs/sat == 7:21pm PDT mon/wed/fri -- see https://crontab.guru/#21_01_*_*_2,4,6
  workflow_dispatch:
    inputs:
      - channel:
        description: "Channel to configure the build"
        required: true
        type: choice
        default: "Test"
        options:
          - "Test"
          - "Develop"
          - "Project"
          - "Release"
      - project:
        description: "Project Name (used for channel name in project builds, and tag name for all builds)"
        default: "hippo"
      # TODO - add an input for selecting another sha to build other than head of branch

jobs:
  tag-release:
    runs-on: ubuntu-latest
    steps:
      - name: Setup Env Vars
        run: |
          CHANNEL="${{ inputs.channel }}"
          echo VIEWER_CHANNEL="Second_Life_${CHANNEL:-Develop}" >> ${GITHUB_ENV}
          echo NIGHTLY_DATE=$(date --rfc-3339=date) >> ${GITHUB_ENV}
      - name: Update Tag
        uses: actions/github-script@v7.0.1
        if: ${{ secrets.GITHUB_NIGHTLY_TOKEN != "" }}
        with:
          github-token: ${{ secrets.GITHUB_NIGHTLY_TOKEN }}
          script: |
            github.rest.git.createRef(
              owner: context.repo.owner,
              repo: context.repo.repo,
              ref: "refs/tags/${{ env.VIEWER_CHANNEL }}#${{ env.NIGHTLY_DATE }}",
              sha: context.sha
            )