Skip to content

Commit

Permalink
feat: add docker repo automation
Browse files Browse the repository at this point in the history
  • Loading branch information
Crypta-Eve committed Mar 20, 2024
1 parent 129a6ba commit d9f947a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Tag a new seat-docker release
on:
release:
types: [released]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
name: Checkout and tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: eveseat/seat-docker
ssh-key: '${{ secrets.SEAT_DOCKER_REPO }}'
- run: |
git config user.name github-actions
git config user.email [email protected]
currver=`cat version`
a=(${currver//./ })
newrelease=${a[2]}
newrelease=$((newrelease+1))
newver="${a[0]}.${a[1]}.${newrelease}"
echo $newver > version
git add version
git commit -m "bump to version $newver"
git push
git tag -a "$newver" -m "src: $GITHUB_REPOSITORY commit: ${GITHUB_SHA: -8}"
git push origin --tags

0 comments on commit d9f947a

Please sign in to comment.