This is an automated email from the ASF dual-hosted git repository.

thiagohp pushed a commit to branch javax
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/javax by this push:
     new fc4f37de3 TAP5-2785: uncommenting stuff in the justfile
fc4f37de3 is described below

commit fc4f37de3f8d9af4f0d8fb360fa4685931eca7f3
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Sun Aug 18 18:31:01 2024 -0300

    TAP5-2785: uncommenting stuff in the justfile
---
 justfile | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/justfile b/justfile
index b91730243..210fab2a5 100644
--- a/justfile
+++ b/justfile
@@ -19,9 +19,9 @@ tapestry-core-maven-local-snapshot:
 _deploy_branch branch extra-options:
        echo "Releasing branch: {{branch}} with Gradle extra options 
'{{extra-options}}'"
        # Fail if there are untracked files or uncommitted changes
-       #git diff --quiet && git diff --cached --quiet || echo "\nThere are 
untracked files or uncommitted changes!\n" && git status && false
-       #git checkout master
-       #./gradlew clean generateRelease {{gradle-options}} {{extra-options}}
+       git diff --quiet && git diff --cached --quiet || echo "\nThere are 
untracked files or uncommitted changes!\n" && git status && false
+       git checkout master
+       ./gradlew clean generateRelease {{gradle-options}} {{extra-options}}
 
 _deploy_javax extra-options: (_deploy_branch "javax" extra-options)
 _deploy_master extra-options: (_deploy_branch "master" extra-options)
@@ -31,12 +31,12 @@ snapshot: (_deploy_branch "master" "-Dci=true") 
(_deploy_branch "javax" "-Dci=tr
 
 # Deploys a release to the ASF staging repository
 release version: (_deploy_branch "master" "") (_deploy_branch "javax" "")
-       #git checkout master
-       #git tag {{version}}
-       #git push --tags
-       #git checkout javax
-       #git tag {{version}}-javax
-       #git push --tags
+       git checkout master
+       git tag {{version}}
+       git push --tags
+       git checkout javax
+       git tag {{version}}-javax
+       git push --tags
 
 # Builds Tapestry without running tests
 build:

Reply via email to