Fix YAML Unicode characters above U+FFFF. #139
This file contains hidden or 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: Push test image | |
| on: | |
| push: | |
| branches: | |
| - "test" | |
| env: | |
| DOCKER_USER: lcnetdev | |
| DOCKER_PASSWORD: ${{secrets.DOCKER_HUB}} | |
| REPO_NAME: scriptshifter | |
| jobs: | |
| push-image-to-docker-hub: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout repo | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| fetch-tags: true | |
| - name: update version info | |
| run: | | |
| git describe --tags --always >| VERSION | |
| git rev-parse HEAD >> VERSION | |
| - name: Build the Docker image | |
| run: > | |
| docker build -f Dockerfile . | |
| --tag $DOCKER_USER/$REPO_NAME:${{ github.ref_name }} | |
| --tag $DOCKER_USER/$REPO_NAME:test | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: lcnetdev | |
| password: ${{ secrets.DOCKER_HUB }} | |
| - name: Push to Docker Hub | |
| run: docker push $DOCKER_USER/$REPO_NAME:test |