Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions .github/workflows/api-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:
defaults:
run:
working-directory: api-server

steps:
- uses: actions/checkout@v4
- name: Set up Go
Expand Down Expand Up @@ -93,8 +92,7 @@ jobs:
contents: read
runs-on: ubuntu-latest
environment: registry-creds
# if: github.ref == 'refs/heads/main'

if: ${{ github.event_name == 'push' }}
steps:
- name: download tar.gz binary artifacts
uses: actions/download-artifact@v4
Expand All @@ -115,10 +113,3 @@ jobs:
- name: copy binaries to s3
run: |
aws s3 sync dist/packages s3://instructlab-ui/apiserver

build-workflow-complete:
needs: ["build-packages", "upload-s3-packages"]
runs-on: ubuntu-latest
steps:
- name: Build Complete
run: echo "Build Complete"
1 change: 1 addition & 0 deletions api-server/jobs.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ func (srv *ILabServer) getJob(jobID string) (*Job, error) {
j.EndTime = &t
}
}

return &j, nil
}

Expand Down
Loading