1
0
Fork 0

Fix bootstrap script and Docker tag

main
Ambrose Chua 2021-09-24 13:51:34 +08:00
parent 5549fe9d56
commit 2d1795d769
2 changed files with 3 additions and 2 deletions

View File

@ -149,10 +149,11 @@ download_minio_client() {
chmod +x "$download_bin_path/mc"
}
download_nvim_plug() {
version=master
mkdir -p "$HOME/.config/nvim/autoload"
wget \
--output-document "$HOME/.config/nvim/autoload/plug.vim" \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
https://github.com/junegunn/vim-plug/raw/$version/plug.vim
}
download_go() {
version=1.16.2

View File

@ -45,5 +45,5 @@ jobs:
file: .docker/${{ matrix.tag }}
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ matrix.tag }}
tags: ${{ env.REGISTRY }}/${{ github.repository }}:${{ matrix.tag }}
labels: ${{ steps.meta.outputs.labels }}