Category "github-actions"

GitHub workflows doesn't find a module

I'm trying to configure tests in the GitHub workflows for my FastAPI application. My alembic.ini -file is located in app folder. The alembic ´env.py´

Github Actions returning null values for valid test

I am developing a Flutter app using Firebase as a backend, and constructing some mock unit tests. One of my test cases passes without issue on my local machine,

dotnet restore in Github Actions gives 401 unauthorized

a NET6 project on Github cannot be dotnet-restored in Github Actions. dotnet restore works fine locally. Looking at the Action logs, it seems GH looks for Micro

How to fix errors for Django's Auth/CustomUser after resetting the migrations and db?

After experimenting with setting up CustomUser and many-to-many relationships, I decided to make some (what turned out to be major) changes to the models. I had

Reusing github actions jobs results from a workflow when called on workflow_run

Is it possible to properly get the results from jobs executed in a workflow A when workflow B is executed due to have a trigger workflow_run for workflow A? Wor

Specify runner to be used depending on condition in a GitHub Actions workflow

We have two runners, one for running production jobs and another for running non production jobs, but I am unable to do that using a workflow level environment

Why I cannot authenticate an app in Azure

I am trying to authenticate app in azure, but getting the following error, Response status code does not indicate success: 401 (Unauthorized). Authentication

Github Actions workflow : can't change working directory - Error: An error occurred trying to start process '/usr/bin/bash' with working directory

I want to create a Github workflow to run the tests of my Flask application at each merge request. This is the first time I'm writing one so I'll take any advic

How to write Github workflow for JDK 17

This is the current Github for JDK 11 and works fine. I have migrated my project to JDK 17. It works fine locally but breaks in Github workflows. I don't know h

Github Action Unity Build Automation, cant run

Always got this result on running gitlab actions for building unity Show Image it is not that its error actually, just stopped on progress, i've tried on my dev

How to use visual studio for GitHub actions?

We have a jenkins server setup in AWS on an ubuntu machine. Created two machines on windows server 2012 and each having visual studio enterprise edition install

Expo app cannot see env variable from Github action

We store our configurations on the vault and during the Github action workflow we pull this and intend to use this for the app during build time. This is our wo

Github Action: No signing certificate "iOS Development" found

The related issue is here: https://github.com/yukiarrr/ios-build-action/issues/74 UPDATE: there is no "iOS Development" inside any of the code in my project. An

Github Actions run terraform init in multiple directories

I have 3 Terraform directories: test_1 test_2 test_3 I would like to run terraform init in each of these directories. Is there a way to do this with a loop ins

GitHub self-hosted action runner git LFS fails x509 certificate signed by unknown authority

I am trying to create a GitHub action that runs on a windows server self-hosted runner and I'm stuck on my checkout failing at the LFS download portion I'm usin

Django Migration from Github actions

Hello I have a database in Google Cloud Platform and I am trying to figure out how to run a django migration from github actions once I have deployed my app to

Django Github CI cannot connect to mysql 'db'

Issue When trying to setup a Github action to test a Django project automatically, we ran into an issue with the django.yml setup. Whenever we ran the .yml, we

Django Github CI cannot connect to mysql 'db'

Issue When trying to setup a Github action to test a Django project automatically, we ran into an issue with the django.yml setup. Whenever we ran the .yml, we

How to check if an optional workflow_dispatch input is set or not

I have an input defined as workflow_dispatch: inputs: level: description: 'level to process' type: number required: false I

Configuration of GitHub Actions: Avoid running CI twice when merging PR into main

I am using GitHub a ctions to manage my CI and the following events trigger my workflow: on: pull_request: branches: main push: branches: main I ob