Skip to content

Commit

Permalink
- WIP - github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jpage4500 committed Oct 18, 2024
1 parent 613af5e commit e1bc6e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/jdeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ name: jDeploy CI with Maven

on:
push:
branches: ['develop']
tags: ['*']

jobs:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:

- name: create version
run: |
VERSION=$(date '+%y.%m.%d-%H%M')
git tag "VERSION"
echo "APP_VERSION=$(date '+%y.%m.%d-%H%M')" >> $GITHUB_ENV
- name: push tag
run: |
git tag "${{ env.APP_VERSION }}"
git push origin --tags

0 comments on commit e1bc6e4

Please sign in to comment.