Skip to content

Commit

Permalink
fix: release update docker version in action.yml (#68)
Browse files Browse the repository at this point in the history
Signed-off-by: tison <wander4096@gmail.com>
  • Loading branch information
tisonkun authored Mar 23, 2023
1 parent 51f1414 commit be9af55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -271,13 +271,15 @@
<inherited>false</inherited>
<configuration>
<skip>false</skip>
<arguments>v${project.version}</arguments>
</configuration>
</execution>
<execution>
<id>after-prepare-release</id>
<inherited>false</inherited>
<configuration>
<skip>false</skip>
<arguments>latest</arguments>
</configuration>
</execution>
</executions>
Expand Down
2 changes: 1 addition & 1 deletion tools/update-action-image-url.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

if __name__ == '__main__':
parser = ArgumentParser(formatter_class=ArgumentDefaultsHelpFormatter)
parser.add_argument('version', default='latest', nargs='?', help='version of hawkeye-native image')
parser.add_argument('version', help='version of hawkeye-native image')
args = parser.parse_args()

pattern = re.compile(r'docker://ghcr.io/korandoru/hawkeye-native.*')
Expand Down

0 comments on commit be9af55

Please sign in to comment.