11,210 questions
Score of 3
2 answers
528 views
Firebase Hosting GitHub Action fails with "supplied version is the current active version" but changes are still deployed
I'm using the FirebaseExtended/action-hosting-deploy@v0 GitHub Action to deploy a Flutter web application to Firebase Hosting. Every time I push changes to my code, the action runs and fails with an ...
Score of -1
0 answers
45 views
Port GIthub Action over from Personal Account to Enterprise account
I have this github workflow below and it works great on my personal account.
name: Check if docs need updating (test version, no notification)
run-name: Documentation impact check (test)
on:
...
Score of -1
1 answer
76 views
Podman RUN --mount=type=bind fails with "Permission denied" when build context is in a 0700 tempdir created by another user [closed]
I'm running podman build through a rootful podman systemd socket (CONTAINER_HOST=unix:///var/run/podman/podman.sock). The build uses a Dockerfile with RUN --mount=type=bind:
FROM quay.io/centos/...
Best practices
0
votes
1
replies
59
views
Is it useful to run CI on the whole matrix?
For the development of a small Python library, I have set up the following CI that is run by GitHub Actions when changes are pushed to main branch, and also in pull requests.
build:
runs-on: ${{ ...
Tooling
2
votes
3
replies
84
views
Working with Git Commands for Source Code Management
i have initialized with "git init" but now i want to undo , what i can do for this ? Is the no. of commands are less ? Can you list them all ? if possible give some tips and tricks to ...
Score of 1
1 answer
168 views
Why am I getting a 404 when I use Trusted Publishing to publish from GitHub Actions to npm?
I have an npm package that I'm publishing with a GitHub Actions workflow. To secure the toolchain I'm using Trusted Publishing to do OIDC auth instead of a long-lived publishing token. Everything ...
Score of 0
1 answer
73 views
GitHub Actions keeps using the last commit of develop branch instead of main
With this simple GitHub Actions workflow:
name: Deploy to Production
on:
workflow_run:
workflows: [ "CI - Tests & Quality" ]
types: [ completed ]
branches: [ ...
Advice
0
votes
4
replies
119
views
How to run an HTML and then run a JS check to its output
<html><head></head><body><div id="LNReader-chapter">
<p>The girl’s family had done</p>
<p>That girl’s finally done</p>
</div></body>
...
Advice
1
vote
5
replies
140
views
GitHub "You have used 90% of the Actions minutes..."
I received various emails regarding "failed runs" and using up all of my "actions minutes". I have no clue what these even are, and I am sure I've never set up any automated ...
Advice
0
votes
1
replies
53
views
I can't get modified files in GitHub Actions after a force push
I have a GitHub workflow that triggers on push and pull request when files under a specific folder (Animations/, in my case) are modified, so I can run some tests on them.
The tests are slow and ...
Score of 0
0 answers
76 views
Consumer's/caller's vars Value passed and blank strings for Reusable Inputs
I was playing around with the concept of Reusable Workflows (for GitHub Actions) and I noticed that we might have a bug.
Let's say I have the reusable workflow at MyOrg/github-workflow-foo and the ...
Best practices
0
votes
1
replies
48
views
Code movement to higher environments in GitHub
the merge to main branch in my github account deploys the code to dev. everytime there is new deployment, a new version is released. from there, a desired version of code can be picked and then that ...
Best practices
0
votes
1
replies
58
views
Automated testing with Github Actions
This question consists of 2 parts:
Is it possible to use Github actions to run my tests before pushing the code to the main branch?
example: new code -> commit code -> automated tests -> ...
Advice
0
votes
1
replies
76
views
CI/CD build failures
How much time does your team lose each week due to flaky or non-obvious CI/CD build failures? Would it be beneficial for an AI to automatically diagnose and remark on the PR?
Score of 4
0 answers
92 views
GitHub Actions workflow_run trigger keeps firing with old commit SHA even after workflow file is deleted
I have a repository with two branches: main and develop. I had a workflow file web-image-develop.yml that used workflow_run trigger to build and push a Docker image when "Frontend CI" ...