mirror of
https://github.com/nektos/act.git
synced 2026-04-26 09:25:54 +03:00
[GH-ISSUE #2561] Act push fails but on github succeeds (also, act push succeeds when using in the verbose mode). #1173
Labels
No labels
area/action
area/cli
area/docs
area/image
area/runner
area/workflow
backlog
confirmed/not-planned
kind/bug
kind/discussion
kind/external
kind/feature-request
kind/question
meta/duplicate
meta/invalid
meta/need-more-info
meta/resolved
meta/wontfix
meta/workaround
needs-work
pull-request
review/not-planned
size/M
size/XL
size/XXL
stale
stale-exempt
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/act#1173
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @halcwb on GitHub (Dec 9, 2024).
Original GitHub issue: https://github.com/nektos/act/issues/2561
Bug report info
Command used with act
Describe issue
Expected act to run the push workflow.
Link to GitHub repository
https://github.com/halcwb/GenPres2
Workflow content
Relevant log output
Additional information
When I run act with the in verbose mode, it runs as expected! There is indeed a problem in my build.yml setup. That's what I wanted to fix locally using act.
@halcwb commented on GitHub (Dec 9, 2024):
Finally, got it working using
act push --container-architecture linux/arm64/v8. Also, needed to add more virtual disk resource to docker. Last one is a bit strange as I run the application including some large resource files (missing in the build process) inside a docker container on the same machine.@halcwb commented on GitHub (Dec 9, 2024):
Another thing to note using act with a different repository. When running act without the verbose parameter, I get the invalid reference format. When using
act push -v, it runs as expected.@sebastien-perpignane commented on GitHub (Dec 10, 2024):
Hi,
try like this:
act --container-architecture=linux/amd64with "=" between the option name and its value.
I guess the command should fail if the "=" character is missing, it could be improved.
@halcwb commented on GitHub (Dec 16, 2024):
This did the trick, thanks