Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
77 views

I'm new to this, so please bear with me. I couldn't find documentation on my question: I'd like to build a .NET project on GitHub or GitLab using CI/CD and have it published to NuGet.org. Is it ...
AxD's user avatar
  • 3,262
0 votes
1 answer
22 views

I am trying to build release apk with Github CI/CD automation. I have Used Jsonserializable and Intl packages in my project. And build_runner is generating generated folders in project which we doesn'...
shilpa vania's user avatar
0 votes
1 answer
144 views

I have a GitHub Actions workflow in place that is triggered whenever a PR is closed and merged. This action automatically generates an APK and attaches it to a new GitHub release with a specific tag. ...
nogabemist's user avatar
1 vote
0 answers
258 views

Context: I'm dipping my toe into GitHub's lovely CI/CD facility and having a bit of difficulty. https://github.com/rdpoor/basic-cicd is a super-simple repo designed to run unit tests and coverage ...
fearless_fool's user avatar
0 votes
1 answer
200 views

I am trying to understand how running lighthouse as CI helps me. What I understood is on every PR lighthouse will run on my application that runs on a localhost. But my end users are using the prod ...
Himanshu Saraswat's user avatar
0 votes
0 answers
167 views

I've created 2 workflows, one is caller workflow A in repository A and other is called workflow B in repository B. Both the repositories are part of Github Org OrgName. Workflow B in repository B is ...
Karan Tikku's user avatar
2 votes
3 answers
5k views

On my github action, it logged the following: The full lint text report is located at: /home/runner/work/honk/honk/app/build/intermediates/lint_intermediate_text_report/debug/lint-results-debug.txt ...
Leonardo Sibela's user avatar
0 votes
1 answer
2k views

I have github actions workflow which should be triggered on release creation name: "Attach package to release assets" # https://docs.github.com/en/actions/using-workflows/events-that-...
Most Wanted's user avatar
  • 7,249
0 votes
0 answers
252 views

CI was working just fine but now it's failing. I don't believe anyone has made any changes to test environment or the set .yml. It just looks like libcurl4-openssl-dev is no longer available?!? The ...
Meltemi's user avatar
  • 38.4k
4 votes
1 answer
8k views

I have a private GitHub repository named "Test Repo" under an organization. The repository has an action that performs a workflow and uploads an artifact (HTML). I have ten more private ...
Sahil Khanna's user avatar
  • 4,422
1 vote
1 answer
821 views

I have the following Github CI name: Node.js CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: strategy: matrix: platform: [ubuntu-latest, ...
João Pimentel Ferreira's user avatar
0 votes
0 answers
1k views

if i have my kustomize.yaml file here : apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization images: - name: nix/image newName: nix/image2 newTag: latest and i want to dynamically ...
ask stack's user avatar
0 votes
1 answer
261 views

I am an EE student who was able to secure a summer job with a CS professor. He will start working on a development project and asked me to setup a GitHub repo for the same. I have coding experience ...
freshman_2021's user avatar
2 votes
0 answers
2k views

Currently using the Submit Pull Request where it will automatically create a pull request for the branch but I wanted to it to run only for the first time I committed a branch, how do I stop it from ...
Arthur's user avatar
  • 457
1 vote
2 answers
627 views

I am aware that we don't commit .env file to GIT since it contains secret password of the application. Now, my question is that how come our code via CICD pipeline for this project repository will run ...
Sumit Dwivedi's user avatar
0 votes
0 answers
1k views

I have a CI setup in Github which runs all the tests I currently have (200 approx) which are e2e tests using jest and superagent, following NestJS's standard testing pattern, also meaning that I have ...
SeekanDestroy's user avatar
2 votes
3 answers
2k views

I have added a job in the existing circleci workflow, I would like to run that job only if a yaml file is changed in the repo. Is there any way to do it ? TIA.
flux0987's user avatar
1 vote
1 answer
2k views

I got the following warning on Github CI when trying to build an iOS archive: ld: warning: ignoring file ios/myframework.xcframework/ios-arm64/myframework.framework/myframework, building for iOS-arm64 ...
f4z3k4s's user avatar
  • 1,279
1 vote
2 answers
905 views

I am trying to figure out whats going on with Github workflows using a database dependency (MySQL actually), but I can't find any explanation or solution for my situation. This is my workflow yaml ...
wajdi_jurry's user avatar
5 votes
1 answer
1k views

At the moment I'm trying to setup a solution with a implementations class library and an abstractions project. I want to have both packages on nuget.org. Normally when you're just using ...
Pieterjan's user avatar
  • 3,709
0 votes
1 answer
855 views

I had a version of the following pipeline that ran as a single job, and all in this took under 6 minutes. I then updated the pipeline to be broken up into separate Jobs to make it easier to know which ...
Zach Smith's user avatar
  • 5,704
1 vote
0 answers
747 views

I have been trying to set up a container workflow in my github project so that it is triggered by every push to to repo and. It must build the container image from the default Dockerfile and push the ...
Mehdi Haghgoo's user avatar
0 votes
1 answer
306 views

Locally, running tsc or tsc -w in parallel to npm t -- --watch all work, but trying to replicate what I have into Github CI hasn't been working. For some reason I'm not even able to print the folders ...
psygo's user avatar
  • 7,853
1 vote
1 answer
361 views

I have a project on GitHub, I want to setup CI job to build docker images and push to AWS ECR. My requirements are - One single ci file (I have created.github/workflows/aws.yml) CI job must trigger ...
Bopsi's user avatar
  • 2,526
0 votes
0 answers
74 views

After diving into this post: Show current state of Jenkins build on GitHub repo I still haven't found a way to show the current status of the build (last Jenkins run result) in every PR. Meaning that ...
Avishay Bikowsky's user avatar