chore(deps): bump docker/login-action from 2 to 3 #40
Workflow file for this run
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: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set current date as env variable | |
id: tagname | |
run: echo "::set-output name=timestamp::$(date +'%s')" | |
- uses: actions/checkout@v4 | |
- name: Install devbox | |
uses: jetpack-io/[email protected] | |
with: | |
enable-cache: true | |
- run: npm ci | |
- run: npm run format:validate | |
- run: npm test | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
env: | |
TAG_NAME: ${{ steps.tagname.outputs.timestamp }} | |
with: | |
push: ${{ github.ref_name == 'main' }} | |
tags: mstruebing/elmodoro:${{ steps.tagname.outputs.timestamp }} |