File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,40 @@ jobs:
21
21
version : ' 1'
22
22
- uses : actions/checkout@v4
23
23
- uses : julia-actions/julia-buildpkg@v1
24
+ - name : Overwrite Package Version # FIXME
25
+ run : >
26
+ julia -e '
27
+ lines = readlines("Project.toml")
28
+ open("Project.toml", "w") do f
29
+ for l in lines
30
+ if l == "version = \"0.9.0-dev\""
31
+ l = "version = \"0.8.4\""
32
+ end
33
+ println(f, l)
34
+ end
35
+ end'
24
36
- uses : julia-actions/julia-invalidations@v1
25
37
id : invs_pr
26
38
27
39
- uses : actions/checkout@v4
28
40
with :
29
41
ref : ${{ github.event.repository.default_branch }}
30
42
- uses : julia-actions/julia-buildpkg@v1
43
+ - name : Overwrite Package Version # FIXME
44
+ run : >
45
+ julia -e '
46
+ lines = readlines("Project.toml")
47
+ open("Project.toml", "w") do f
48
+ for l in lines
49
+ if l == "version = \"0.9.0-dev\""
50
+ l = "version = \"0.8.4\""
51
+ end
52
+ println(f, l)
53
+ end
54
+ end'
31
55
- uses : julia-actions/julia-invalidations@v1
32
56
id : invs_default
33
-
57
+
34
58
- name : Report invalidation counts
35
59
run : |
36
60
echo "Invalidations on default branch: ${{ steps.invs_default.outputs.total }} (${{ steps.invs_default.outputs.deps }} via deps)" >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments