Skip to content

Bump golang.org/x/sys from 0.32.0 to 0.34.0 #15

Bump golang.org/x/sys from 0.32.0 to 0.34.0

Bump golang.org/x/sys from 0.32.0 to 0.34.0 #15

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
name: Deploy New Design

Check failure on line 19 in .github/workflows/docker-image.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker-image.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
on:
push:
branches:
- main # Trigger deployment on push to the main branch
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Dependencies
run: npm install
- name: Build Project
run: npm run build
- name: Deploy to Hosting Service
env:
API_KEY: ${{ secrets.DEPLOY_KEY }}
run: npm run deploy