Bump @types/node from 22.10.0 to 22.10.1 #328
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 | |
on: | |
push: | |
branches: [ main, develop ] | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
docker: | |
if: github.actor != 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# - run: echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u doerfli --password-stdin | |
- uses: rlespinasse/github-slug-action@v2.x | |
# - run: docker build --build-arg INSTANCE=mumbai -t ghcr.io/etherisc/flightdelay-ui/flightdelay-ui:${{ env.GITHUB_REF_SLUG }} . | |
# - run: docker build -t ghcr.io/etherisc/flightdelay-ui/flightdelay-ui:${{ env.GITHUB_REF_SLUG }} --build-arg FONTAWESOME_NPM_AUTH_TOKEN=${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }} . | |
- run: docker build -t ghcr.io/etherisc/flightdelay-ui/flightdelay-ui:${{ env.GITHUB_REF_SLUG }} . | |
# no push to ghcr.io for now | |
# - run: docker push ghcr.io/etherisc/flightdelay-ui/flightdelay-ui:${{ env.GITHUB_REF_SLUG }} |