2 Star 0 Fork 0

mirrors_jitsi/gh-action-autopublish

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 668 Bytes
一键复制 编辑 原始数据 按行查看 历史
Saúl Ibarra Corretgé 提交于 2022-09-26 19:23 . Update to Node 16
FROM node:16-slim
# Labels for GitHub to read your action
LABEL "com.github.actions.name"="AutoPublish"
LABEL "com.github.actions.description"="Automated version bump and publishing for npm packages"
# Here are all of the available icons: https://feathericons.com/
LABEL "com.github.actions.icon"="truck"
# And all of the available colors: https://developer.github.com/actions/creating-github-actions/creating-a-docker-container/#label
LABEL "com.github.actions.color"="blue"
# Install dependencies
RUN apt-get update && apt-get -y install git
# Copy the rest of your action's code
COPY . .
RUN npm install
# Run `node /index.js`
ENTRYPOINT ["node", "/index.js"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_jitsi/gh-action-autopublish.git
[email protected]:mirrors_jitsi/gh-action-autopublish.git
mirrors_jitsi
gh-action-autopublish
gh-action-autopublish
master

搜索帮助