add nobel #11
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: Docker publish - rootfs | |
on: | |
push: | |
env: | |
IMAGE_NAME: nugulinux/buildenv | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
target: | |
[ | |
xenial_x64, | |
xenial_arm64, | |
xenial_armhf, | |
bionic_x64, | |
bionic_arm64, | |
bionic_armhf, | |
focal_x64, | |
focal_arm64, | |
focal_armhf, | |
jammy_x64, | |
jammy_arm64, | |
jammy_armhf, | |
noble_x64, | |
noble_arm64, | |
noble_armhf, | |
] | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Enable experimental feature | |
run: | | |
echo '{"experimental":true}' | sudo tee /etc/docker/daemon.json | |
sudo service docker restart | |
- name: Build image | |
run: ./build.sh ${{ matrix.target }} | |
- name: Docker login | |
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | |
- name: Publish | |
run: docker push $IMAGE_NAME:${{ matrix.target }} |