Compare commits

..

4 Commits

Author SHA1 Message Date
hsc be38fc6876 chore: 添加项目无关文件的 .gitignore 规则
continuous-integration/drone/push Build is passing Details
- 忽略 Maven 构建目录 /target
- 忽略 IntelliJ IDEA 项目配置文件 /.idea- 忽略未定义日志路径文件 /log.path_IS_UNDEFINED- 忽略临时文件目录 /tmp
2025-04-07 17:45:41 +08:00
hsc 86f8c309ad refactor: 更新 hello.sh脚本
- 移除了多余的空行
- 保留了 Dev-Go 版本信息
- 保留了 Hello World 输出
- 保留了作者信息
2025-04-07 17:43:33 +08:00
hsc 6dc6da9af3 refactor: 更新 hello.sh脚本
- 移除了多余的空行
- 保留了 Dev-Go 版本信息
- 保留了 Hello World 输出
- 保留了作者信息
2025-04-07 17:42:31 +08:00
hsc abe71e4e2d refactor: 更新 hello.sh脚本
- 移除了多余的空行
- 保留了 Dev-Go 版本信息
- 保留了 Hello World 输出
- 保留了作者信息
2025-04-07 17:42:24 +08:00
2 changed files with 8 additions and 3 deletions

View File

@ -4,7 +4,8 @@ name: default
steps: steps:
- name: run-hello-script - name: run-hello-script
image: docker.1ms.run/alpine:latest # 必须指定基础镜像如alpine/bash image: docker.1ms.run/alpine:latest # 必须指定基础镜像如alpine/bash
commands: commands:
- chmod +x hello.sh - echo "hello world"
- ./hello.sh - echo "hello world"
- echo "hello wor123123123ld"

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/target
/.idea
/log.path_IS_UNDEFINED
/tmp