Skip to content

Commit

Permalink
Add temp workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Mesh <christianmesh1@gmail.com>
  • Loading branch information
cam72cam committed Dec 8, 2023
1 parent 3435ff2 commit 268c1d1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/bump-versions-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Bump Provider and Module Versions

on: [push]

jobs:
bump-versions:
runs-on: ubuntu-latest

permissions:
contents: write
actions: write
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: './src/go.mod'

- name: Run version bump script
working-directory: ./src
run: go run ./cmd/bump-versions

0 comments on commit 268c1d1

Please sign in to comment.