Skip to content

Commit 2eceb56

Browse files
authored
Merge pull request #3905 from hove-io/fix_download_package
move checkout
2 parents 9d5feb5 + de95ba7 commit 2eceb56

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/build_dockers.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ jobs:
2727
run: |
2828
sudo apt update && sudo apt install -y --force-yes zip httpie
2929
30+
- name: Checkout
31+
uses: actions/checkout@v3
32+
with:
33+
submodules : recursive
34+
fetch-depth: 0
35+
3036
- name: Checkout core_team_ci_tools
3137
uses: actions/checkout@v3
3238
with:
@@ -64,12 +70,6 @@ jobs:
6470
unzip -qo $cosmogony2cities_package
6571
rm -f $cosmogony2cities_package
6672
67-
- name: Checkout
68-
uses: actions/checkout@v3
69-
with:
70-
submodules : recursive
71-
fetch-depth: 0
72-
7373
- name: Restore ccache
7474
uses: hendrikmuhs/[email protected]
7575
with:
@@ -85,6 +85,7 @@ jobs:
8585
echo "navitia_tag=dev" >> $GITHUB_ENV
8686
echo "aws_branch=dev" >> $GITHUB_ENV
8787
88+
8889
- name: Choose release tag
8990
if: startsWith(github.ref, 'refs/tags/')
9091
run: |
@@ -164,7 +165,7 @@ jobs:
164165
run: |
165166
echo '{"text":":warning: Github Actions: build_dockers for ${{env.navitia_tag}} failed !"}' | http --json POST ${{secrets.SLACK_NAVITIA_CORE_TEAM_URL}}
166167
167-
- name: success notification on navitia core team
168+
- name: success notification on core team
168169
if: success()
169170
run: |
170-
echo '{"text":":octopus: Github Actions: build_dockers succeeded. New navitia ${{env.navitia_tag}} images available.' | http --json POST ${{secrets.SLACK_NAVITIA_CORE_TEAM_URL}}
171+
echo '{"text":":octopus: Github Actions: build_dockers succeeded. New navitia ${{env.navitia_tag}} images available."}' | http --json POST ${{secrets.SLACK_NAVITIA_CORE_TEAM_URL}}

0 commit comments

Comments
 (0)