Fix timezone issue in halloween_countdn (#2854) #2312
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Release | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "v*" | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup build agent | |
run: ./.github/scripts/setup.sh | |
- name: Setup auth | |
run: ./.github/scripts/setup-auth.sh | |
env: | |
COMMUNITY_PIXLET_AUTH: "${{ secrets.COMMUNITY_PIXLET_AUTH }}" | |
- name: Find last successful build | |
id: lastsuccess | |
uses: SamhammerAG/last-successful-build-action@v4 | |
with: | |
branch: "main" | |
workflow: "Build and Release" | |
verify: true | |
token: "${{ secrets.TIDBYT_GITHUB_TOKEN }}" | |
- name: Determine targets | |
id: targets | |
run: ./.github/scripts/determine-targets.sh | |
env: | |
BASE_SHA: ${{ steps.lastsuccess.outputs.sha }} | |
HEAD_SHA: ${{ github.sha }} | |
- name: Check modified apps | |
run: ./.github/scripts/check-apps.sh | |
env: | |
TARGETS: "${{ steps.targets.outputs.targets }}" | |
- name: Deploy modified apps | |
run: ./.github/scripts/deploy-apps.sh | |
env: | |
VERSION: ${{ github.sha }} | |
TARGETS: "${{ steps.targets.outputs.targets }}" |