Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardtfn committed Dec 21, 2024
2 parents 6774a1a + 21720d8 commit f6169e3
Show file tree
Hide file tree
Showing 10 changed files with 346 additions and 260 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/validate_esphome_beta.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
---
name: Validate ESPHome (Beta)

# yamllint disable-line rule:truthy
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- "*.yaml"
Expand Down
51 changes: 51 additions & 0 deletions .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Workflow for managing versioning, tagging, and conditional updates
---
name: Bump Version and Tag

on: # yamllint disable-line rule:truthy
push:
branches:
- main
workflow_dispatch:
inputs:
update_stable:
description: "Update stable tag?"
required: true
default: "false"

jobs:
versioning:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Git
run: |
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
- name: Bump Version
run: |
chmod +x ./versioning/bump_version.sh
./versioning/bump_version.sh
- name: Push Changes and Tags
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if ! git push origin main; then
echo "Failed to push to main branch"
exit 1
fi
if ! git push origin --tags --force; then
echo "Failed to push tags"
exit 1
fi
- name: Conditionally Update Stable Tag
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.update_stable == 'true' }}
run: |
git tag -f stable
git push origin stable --force
...
Loading

0 comments on commit f6169e3

Please sign in to comment.