Refactor menu into its own file. #96
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: Build i386 | |
| on: | |
| push: | |
| branches: [ next ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-amd64: | |
| runs-on: ubuntu-latest | |
| environment: next | |
| strategy: | |
| matrix: | |
| architecture: [amd64] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Run build.sh for AMD64 | |
| run: | | |
| export REPO_URL=${{ vars.REPO_URL }} | |
| export DOCKER_HUB_PASSWORD=${{ secrets.DOCKER_HUB_PASSWORD }} | |
| ./build.sh build-i386 |