Update version to v3.0.0-alpha.9 #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Installing dependencies | |
run: | | |
sudo apt update | |
sudo apt install make -y | |
git clone https://github.com/estesp/manifest-tool && cd manifest-tool && git checkout v0.9.0 && sudo make && sudo make install && cd .. && rm -Rf manifest-tool | |
docker run --rm --privileged multiarch/qemu-user-static:register | |
sudo apt install -y qemu qemu-user-static qemu-user binfmt-support | |
echo "${{ secrets.DOCKER_HUB_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_HUB_LOGIN }}" --password-stdin | |
- name: Build image | |
run: make build | |
- name: Publish image | |
run: make publish latest |